GitHub Remarks

a chrome extension that can give github repos your own remarks

Was ist GitHub Remarks?

GitHub Remarks ist eine Chrome-Erweiterung, die von hanzichi entwickelt wurde, und ihr Hauptmerkmal ist "a chrome extension that can give github repos your own remarks".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

GitHub Remarks-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Remarks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        a chrome extension that can give github repos your own remarks                    

Grundlegende Informationen zur Erweiterung

Name GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
Offizielle URL https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
Beschreibung a chrome extension that can give github repos your own remarks
Dateigröße 178 KB
Installationsanzahl 45
Aktuelle Version 1.2.1
Letztes Update 2018-05-28
Veröffentlichungsdatum 2018-05-27
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler hanzichi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hanzichi/github-remarks
Hilfeseite URL https://github.com/hanzichi/github-remarks/issues
Unterstützte Sprachen 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"
        }
    ]
}