Octotree Theme

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

¿Qué es Octotree Theme?

Octotree Theme es una extensión de Chrome desarrollada por https://misa198.vercel.app, y su función principal es "A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Octotree Theme

Descarga archivos de extensión Octotree Theme en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Octotree Theme Octotree Theme
ID meagmbmaaljhgdcglcmflnnglpokldcj
URL Oficial https://chromewebstore.google.com/detail/octotree-theme/meagmbmaaljhgdcglcmflnnglpokldcj
Descripción A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.
Tamaño del Archivo 936 KB
Cantidad de Instalaciones 593
Versión Actual 1.4.3
Última Actualización 2023-03-02
Fecha de Publicación 2022-03-09
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://misa198.vercel.app
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://octotree-theme.web.app/
URL de la Página de Ayuda https://github.com/misa198/octotree-theme/issues
Idiomas Soportados 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"
    }
}