Canvas Themeinator

Gives Canvas more themes

什么是Canvas Themeinator?

Canvas Themeinator是由one23four56开发的Chrome扩展程序,该扩展的主要功能是“Gives Canvas more themes”。

扩展截图

screenshot
screenshot
screenshot

下载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.                    

扩展基本信息

名称 Canvas Themeinator Canvas Themeinator
ID ffhddhjbbaocbeejjijfioimiplpfgbb
官方URL 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"
    }
}