Git Master

Git code tree. Support GitHub notifications and git file history

Cos'è Git Master?

Git Master è un'estensione di Chrome sviluppata da https://idayer.com, e la sua funzione principale è "Git code tree. Support GitHub notifications and git file history".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Git Master

Scarica i file di estensione Git Master in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Development productivity tool for git.

Features:
- Git file tree (GitHub && GitLab && Gitee && Gitea && Gogs)
- File search
- Show GitHub repo size and file download support
- GitHub Dark Mode
- GitHub notifications
- GitHub dark mode, also work for gist
- Code Snippet
- Browse the history of files (GitHub && GitLab)
- Coming soon...please suggest by opening an issue on https://github.com/ineo6/git-master/issues                    

Informazioni di Base sull'Estensione

Nome Git Master Git Master
ID klmeolbcejnhefkapdchfhlhhjgobhmo
URL Ufficiale https://chromewebstore.google.com/detail/git-master/klmeolbcejnhefkapdchfhlhhjgobhmo
Descrizione Git code tree. Support GitHub notifications and git file history
Dimensione del File 991 KB
Conteggio Installazioni 7,000
Versione Corrente 1.17.1
Ultimo Aggiornamento 2022-01-25
Data di Pubblicazione 2020-06-26
Valutazione 4.84/5 Totale 31 Valutazioni
Sviluppatore https://idayer.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ineo6/git-master
URL della Pagina di Aiuto https://github.com/ineo6/git-master/issues
URL della Pagina della Politica sulla Privacy http://idayer.com/web-extension-privacy-policy.html
Lingue Supportate en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "short_name": "Git Master",
    "version": "1.17.1",
    "default_locale": "en",
    "icons": {
        "16": "assets\/icons\/favicon-16.png",
        "32": "assets\/icons\/favicon-32.png",
        "48": "assets\/icons\/favicon-48.png",
        "128": "assets\/icons\/favicon-128.png"
    },
    "description": "__MSG_pluginDesc__",
    "homepage_url": "https:\/\/github.com\/ineo6\/git-master",
    "permissions": [
        "*:\/\/*.github.com\/*",
        "tabs",
        "activeTab",
        "storage",
        "alarms",
        "webRequest",
        "webNavigation",
        "https:\/\/api.github.com\/*"
    ],
    "optional_permissions": [
        "",
        "notifications"
    ],
    "web_accessible_resources": [
        "*.woff2",
        "*.png",
        "*.gif",
        "inject.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "author": "neo",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/favicon-16.png",
            "32": "assets\/icons\/favicon-32.png",
            "48": "assets\/icons\/favicon-48.png",
            "128": "assets\/icons\/favicon-128.png"
        },
        "default_title": "GitMaster",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "css": [
                "css\/contentScript.css"
            ]
        }
    ]
}