mirror of
https://github.com/GuySandler/CanvasRefined.git
synced 2026-06-22 10:19:53 +02:00
slight updates
This commit is contained in:
parent
5a6e2a6aec
commit
8b3a6fd317
18
README.md
18
README.md
@ -8,6 +8,11 @@ They tried to change license but forgot to rebase so this is based on the MIT li
|
||||
|
||||
There is a dev branch for active alpha if you really want
|
||||
|
||||
# Get it now!
|
||||
|
||||
1. get it on the [chrome web store](https://chromewebstore.google.com/detail/canvasrefined/ihienfbdfdamhmhhiokjnjmpjgbenedg)!
|
||||
2. get it on the [firefox addon store](https://addons.mozilla.org/en-US/firefox/addon/canvas-refined/)!
|
||||
|
||||
## Inquiries
|
||||
|
||||
To contact me, please email sandlerguy5@gmail.com, or you can open an issue within the "Issues" tab on GitHub.
|
||||
@ -16,7 +21,6 @@ To contact me, please email sandlerguy5@gmail.com, or you can open an issue with
|
||||
|
||||
- [Features](#features)
|
||||
- [Dev Installation](#dev-installation)
|
||||
- [Usage](#usage)
|
||||
- [Version Notes](#version-notes)
|
||||
- [Color Reference](#color-reference)
|
||||
- [Contributing](#contributing)
|
||||
@ -55,8 +59,8 @@ Canvas Refined adds more with more to come!
|
||||
- Custom Background (by URL, theme compatible)
|
||||
- Popup UI revamp
|
||||
- NEW Better todo list
|
||||
- better sidebar
|
||||
- simplified UI
|
||||
- Better sidebar
|
||||
- Simplified UI
|
||||
|
||||
## Planned Features (by priority)
|
||||
- widgets (music, timer)
|
||||
@ -66,7 +70,6 @@ Canvas Refined adds more with more to come!
|
||||
- better what if grade
|
||||
- global search
|
||||
- fix darkmode fixer
|
||||
- make sidebar and todo list work on all pages that need them
|
||||
- grade history with graph
|
||||
|
||||
## Extra features that might be added:
|
||||
@ -102,13 +105,6 @@ To install, run, and build with this repository locally,
|
||||
- Click the "Load upacked" button in the header.
|
||||
- When prompted to open a file, select the root directory of this repository.
|
||||
|
||||
## Usage
|
||||
|
||||
<!-- To use Canvas Refined, select your browser below to install the extension from a store. -->
|
||||
To use Canvas Refined, clone the repo or manually download from the releases page.
|
||||
|
||||
More active beta is on the dev branch.
|
||||
|
||||
### How to use
|
||||
|
||||
- Once the extension is installed, navigate to your institution's Canvas homepage.
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -35,7 +35,8 @@ const localSwitches = [];
|
||||
const fontsDropdownStateKey = "fonts_dropdown_open";
|
||||
|
||||
//const apiurl = "http://localhost:3000";
|
||||
const apiurl = "https://canvasrefined.diditupe.dev";
|
||||
// const apiurl = "https://canvasrefined.diditupe.dev";
|
||||
const apiurl = "none";
|
||||
|
||||
const defaultOptions = {
|
||||
"local": {
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
"manifest_version": 3,
|
||||
"name": "CanvasRefined",
|
||||
"description": "Even More Feature packed extension for Canvas.",
|
||||
"version": "5.12.6",
|
||||
"version": "6.2.61",
|
||||
"icons": {
|
||||
"16": "icon/icon-16.png",
|
||||
"32": "icon/icon-32.png",
|
||||
@ -18,6 +18,7 @@
|
||||
"default_title": "Canvas Refined"
|
||||
},
|
||||
"background": {
|
||||
"scripts": ["js/background.js"],
|
||||
"service_worker": "js/background.js"
|
||||
},
|
||||
"options_page": "html/options.html",
|
||||
@ -30,5 +31,14 @@
|
||||
}
|
||||
],
|
||||
"permissions": ["storage"],
|
||||
"default_locale": "en"
|
||||
"default_locale": "en",
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "canvasrefined@guysan.site",
|
||||
"strict_min_version": "109.0",
|
||||
"data_collection_permissions": {
|
||||
"required": ["none"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user