Octotree Theme

A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.

Octotree Theme란 무엇입니까?

Octotree Theme은(는) https://misa198.vercel.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Octotree Theme 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Octotree is a very useful extension when using Github. My add-on brings icon themes and code themes to use with Octotree and Github for free. Below are the themes that this extension provides.

Icons theme
- Material Icons Theme
- Atom Icons Theme

Code corlor themes
- Default (Default Github theme)
- Ambiance
- Ayu mirage
- Chaos
- Clouds midnight
- Cobalt
- Dracula
- Github dark
- Idle fingers
- Kr theme
- Merbivore soft
- Merbivore
- Mono industrial clear
- Mono industrial
- Monokai spacegray eighties
- Monokai
- Obsidian
- One dark
- Pastel on dark
- Railscasts
- Solarized dark
- Terminal
- Tomorrow night blue
- Tomorrow night bright
- Tomorrow night eighties
- Tomorrow night
- Twilight
- Vibrant ink                    

확장 프로그램 기본 정보

이름 Octotree Theme Octotree Theme
ID meagmbmaaljhgdcglcmflnnglpokldcj
공식 URL https://chromewebstore.google.com/detail/octotree-theme/meagmbmaaljhgdcglcmflnnglpokldcj
설명 A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.
파일 크기 936 KB
설치 횟수 593
현재 버전 1.4.3
최근 업데이트 2023-03-02
출시 날짜 2022-03-09
평점 5.00/5 총 3 개의 평점
개발자 https://misa198.vercel.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://octotree-theme.web.app/
도움말 페이지 URL https://github.com/misa198/octotree-theme/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.",
    "version": "1.4.3",
    "author": "Thanh Vu",
    "homepage_url": "https:\/\/octotree-theme.web.app\/",
    "manifest_version": 3,
    "name": "Octotree Theme",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.woff2",
                "assets\/**\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "action": {
        "default_icon": "icons\/icon64-disabled.png",
        "default_popup": "popup-disabled.html"
    }
}