Octotree Theme

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

Octotree Theme là gì?

Octotree Theme là một tiện ích mở rộng Chrome được phát triển bởi https://misa198.vercel.app, và tính năng chính của nó là "A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Octotree Theme

Tải xuống các tệp mở rộng Octotree Theme dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Octotree Theme Octotree Theme
ID meagmbmaaljhgdcglcmflnnglpokldcj
URL Chính Thức https://chromewebstore.google.com/detail/octotree-theme/meagmbmaaljhgdcglcmflnnglpokldcj
Mô tả A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.
Kích Thước Tệp 936 KB
Số Lần Cài Đặt 593
Phiên Bản Hiện Tại 1.4.3
Cập Nhật Lần Cuối 2023-03-02
Ngày Phát Hành 2022-03-09
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://misa198.vercel.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://octotree-theme.web.app/
URL Trang Trợ Giúp https://github.com/misa198/octotree-theme/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}