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ファイルをダウンロード

Octotree Theme拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}