Canvas Themeinator
Gives Canvas more themes
Vad är Canvas Themeinator?
Canvas Themeinator är en Chrome-tillägg utvecklad av one23four56, och dess huvudfunktion är "Gives Canvas more themes".
Tilläggsskärmbilder
Ladda ner Canvas Themeinator-förlängningens CRX-fil
Ladda ner Canvas Themeinator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension adds themes to Canvas. Currently, there are 10:
-Dark
-AMOLED Dark
-Light
-Aqua
-Purple
-Dark Purple
-Blue
-Dark Blue
-Green
-Orange
+Custom Themes (currently in beta)
This extension is open-source. The GitHub link is below:
https://github.com/one23four56/canvas-themeinator
This extension is a SIDE PROJECT of mine. Do not expect regular updates, I am only maintaining this because I use it. If you really want a feature, go onto GitHub and add it yourself. Grundläggande Information om Tillägg
| Namn | |
| ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
| Officiell webbadress | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
| Beskrivning | Gives Canvas more themes |
| Filstorlek | 25.61 KB |
| Antal Installationer | 299 |
| Aktuell Version | 1.5.1 |
| Senast Uppdaterad | 2021-04-17 |
| Publiceringsdatum | 2021-04-12 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | one23four56 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/one23four56/canvas-themeinator |
| URL till Sekretesspolicy Sidan | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Canvas Themeinator",
"version": "1.5.1",
"description": "Gives Canvas more themes",
"content_scripts": [
{
"matches": [
"https:\/\/*.instructure.com\/*"
],
"css": [
"style.css"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"action": {
"default_title": "Choose Theme",
"default_popup": "html\/index.html"
},
"icons": {
"32": "icon.png"
}
} | |