Git Master

Git code tree. Support GitHub notifications and git file history

Τι είναι το Git Master;

Το Git Master είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://idayer.com, και η κύρια λειτουργία του είναι "Git code tree. Support GitHub notifications and git file history".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Git Master

Λήψη αρχείων επέκτασης Git Master σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Git Master Git Master
ID klmeolbcejnhefkapdchfhlhhjgobhmo
Επίσημο URL https://chromewebstore.google.com/detail/git-master/klmeolbcejnhefkapdchfhlhhjgobhmo
Περιγραφή Git code tree. Support GitHub notifications and git file history
Μέγεθος Αρχείου 991 KB
Αριθμός Εγκαταστάσεων 7,000
Τρέχουσα Έκδοση 1.17.1
Τελευταία Ενημέρωση 2022-01-25
Ημερομηνία Δημοσίευσης 2020-06-26
Αξιολόγηση 4.84/5 Συνολικά 31 Αξιολογήσεις
Προγραμματιστής https://idayer.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ineo6/git-master
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ineo6/git-master/issues
URL της Σελίδας Πολιτικής Απορρήτου http://idayer.com/web-extension-privacy-policy.html
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}