GitHub Remarks

a chrome extension that can give github repos your own remarks

Co je GitHub Remarks?

GitHub Remarks je rozšíření Chrome vyvinuté hanzichi, a jeho hlavní funkcí je „a chrome extension that can give github repos your own remarks“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření GitHub Remarks

Stáhněte si soubory rozšíření GitHub Remarks ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        a chrome extension that can give github repos your own remarks                    

Základní Informace o Rozšíření

Název GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
Oficiální URL https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
Popis a chrome extension that can give github repos your own remarks
Velikost souboru 178 KB
Počet instalací 45
Aktuální Verze 1.2.1
Poslední Aktualizace 2018-05-28
Datum Vydání 2018-05-27
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář hanzichi
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/hanzichi/github-remarks
URL Stránky Nápovědy https://github.com/hanzichi/github-remarks/issues
Podporované Jazyky zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Remarks",
    "manifest_version": 2,
    "version": "1.2.1",
    "description": "a chrome extension that can give github repos your own remarks",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": {
            "19": "icons\/icon_19.png",
            "38": "icons\/icon_38.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "content-scripts\/repoDetail.js"
            ],
            "css": [],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/list.min.js",
                "content-scripts\/stars.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ]
}