mirror of
https://github.com/GuySandler/CanvasRefined.git
synced 2026-06-23 10:19:54 +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
|
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
|
## Inquiries
|
||||||
|
|
||||||
To contact me, please email sandlerguy5@gmail.com, or you can open an issue within the "Issues" tab on GitHub.
|
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)
|
- [Features](#features)
|
||||||
- [Dev Installation](#dev-installation)
|
- [Dev Installation](#dev-installation)
|
||||||
- [Usage](#usage)
|
|
||||||
- [Version Notes](#version-notes)
|
- [Version Notes](#version-notes)
|
||||||
- [Color Reference](#color-reference)
|
- [Color Reference](#color-reference)
|
||||||
- [Contributing](#contributing)
|
- [Contributing](#contributing)
|
||||||
@ -55,8 +59,8 @@ Canvas Refined adds more with more to come!
|
|||||||
- Custom Background (by URL, theme compatible)
|
- Custom Background (by URL, theme compatible)
|
||||||
- Popup UI revamp
|
- Popup UI revamp
|
||||||
- NEW Better todo list
|
- NEW Better todo list
|
||||||
- better sidebar
|
- Better sidebar
|
||||||
- simplified UI
|
- Simplified UI
|
||||||
|
|
||||||
## Planned Features (by priority)
|
## Planned Features (by priority)
|
||||||
- widgets (music, timer)
|
- widgets (music, timer)
|
||||||
@ -66,7 +70,6 @@ Canvas Refined adds more with more to come!
|
|||||||
- better what if grade
|
- better what if grade
|
||||||
- global search
|
- global search
|
||||||
- fix darkmode fixer
|
- fix darkmode fixer
|
||||||
- make sidebar and todo list work on all pages that need them
|
|
||||||
- grade history with graph
|
- grade history with graph
|
||||||
|
|
||||||
## Extra features that might be added:
|
## 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.
|
- Click the "Load upacked" button in the header.
|
||||||
- When prompted to open a file, select the root directory of this repository.
|
- 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
|
### How to use
|
||||||
|
|
||||||
- Once the extension is installed, navigate to your institution's Canvas homepage.
|
- 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 fontsDropdownStateKey = "fonts_dropdown_open";
|
||||||
|
|
||||||
//const apiurl = "http://localhost:3000";
|
//const apiurl = "http://localhost:3000";
|
||||||
const apiurl = "https://canvasrefined.diditupe.dev";
|
// const apiurl = "https://canvasrefined.diditupe.dev";
|
||||||
|
const apiurl = "none";
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
"local": {
|
"local": {
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "CanvasRefined",
|
"name": "CanvasRefined",
|
||||||
"description": "Even More Feature packed extension for Canvas.",
|
"description": "Even More Feature packed extension for Canvas.",
|
||||||
"version": "5.12.6",
|
"version": "6.2.61",
|
||||||
"icons": {
|
"icons": {
|
||||||
"16": "icon/icon-16.png",
|
"16": "icon/icon-16.png",
|
||||||
"32": "icon/icon-32.png",
|
"32": "icon/icon-32.png",
|
||||||
@ -18,6 +18,7 @@
|
|||||||
"default_title": "Canvas Refined"
|
"default_title": "Canvas Refined"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
|
"scripts": ["js/background.js"],
|
||||||
"service_worker": "js/background.js"
|
"service_worker": "js/background.js"
|
||||||
},
|
},
|
||||||
"options_page": "html/options.html",
|
"options_page": "html/options.html",
|
||||||
@ -30,5 +31,14 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"permissions": ["storage"],
|
"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