GitHub Remarks

a chrome extension that can give github repos your own remarks

Wat is GitHub Remarks?

GitHub Remarks is een Chrome-extensie ontwikkeld door hanzichi, en de belangrijkste functie is "a chrome extension that can give github repos your own remarks".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie GitHub Remarks

Download GitHub Remarks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        a chrome extension that can give github repos your own remarks                    

Basisinformatie over de Extensie

Naam GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
Officiële URL https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
Beschrijving a chrome extension that can give github repos your own remarks
Bestandsgrootte 178 KB
Aantal Installaties 45
Huidige Versie 1.2.1
Laatst Bijgewerkt 2018-05-28
Publicatiedatum 2018-05-27
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar hanzichi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/hanzichi/github-remarks
Help Pagina-URL https://github.com/hanzichi/github-remarks/issues
Ondersteunde Talen 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"
        }
    ]
}