Git Master

Git code tree. Support GitHub notifications and git file history

O que é Git Master?

Git Master é uma extensão do Chrome desenvolvida por https://idayer.com, e sua principal característica é "Git code tree. Support GitHub notifications and git file history".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Git Master

Baixe arquivos de extensão Git Master no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Git Master Git Master
ID klmeolbcejnhefkapdchfhlhhjgobhmo
URL Oficial https://chromewebstore.google.com/detail/git-master/klmeolbcejnhefkapdchfhlhhjgobhmo
Descrição Git code tree. Support GitHub notifications and git file history
Tamanho do Arquivo 991 KB
Contagem de Instalações 7,000
Versão Atual 1.17.1
Última Atualização 2022-01-25
Data de Publicação 2020-06-26
Classificação 4.84/5 Total de 31 Avaliações
Desenvolvedor https://idayer.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ineo6/git-master
URL da Página de Ajuda https://github.com/ineo6/git-master/issues
URL da Página de Política de Privacidade http://idayer.com/web-extension-privacy-policy.html
Idiomas Suportados 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"
            ]
        }
    ]
}