Octotree Theme

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

Qu'est-ce que Octotree Theme ?

Octotree Theme est une extension Chrome développée par https://misa198.vercel.app, et sa fonction principale est "A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Octotree Theme

Téléchargez les fichiers d'extension Octotree Theme au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Octotree Theme Octotree Theme
ID meagmbmaaljhgdcglcmflnnglpokldcj
URL Officiel https://chromewebstore.google.com/detail/octotree-theme/meagmbmaaljhgdcglcmflnnglpokldcj
Description A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.
Taille du Fichier 936 KB
Nombre d'Installations 593
Version Actuelle 1.4.3
Dernière Mise à Jour 2023-03-02
Date de Publication 2022-03-09
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://misa198.vercel.app
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://octotree-theme.web.app/
URL de la Page d'Aide https://github.com/misa198/octotree-theme/issues
Langues Prises en Charge 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"
    }
}