Canvas Themeinator
Gives Canvas more themes
什麼是Canvas Themeinator?
Canvas Themeinator是由one23four56開發的Chrome擴展程式,該擴展的主要功能是“Gives Canvas more themes”。
擴展截圖
下載Canvas Themeinator擴展crx文件
下載Canvas Themeinator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | ffhddhjbbaocbeejjijfioimiplpfgbb |
| 官方網址 | https://chromewebstore.google.com/detail/canvas-themeinator/ffhddhjbbaocbeejjijfioimiplpfgbb |
| 簡介 | Gives Canvas more themes |
| 檔案大小 | 25.61 KB |
| 安裝次數 | 299 |
| 目前版本 | 1.5.1 |
| 更新時間 | 2021-04-17 |
| 上架時間 | 2021-04-12 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | one23four56 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/one23four56/canvas-themeinator |
| 隱私政策頁面URL | https://github.com/one23four56/canvas-themeinator/blob/master/privacy.md |
| 支援的語言 | 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"
}
} | |