Canvas Themeinator

Gives Canvas more themes

Canvas Themeinator란 무엇입니까?

Canvas Themeinator은(는) one23four56에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gives Canvas more themes"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Canvas Themeinator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}