GitHub Remarks
a chrome extension that can give github repos your own remarks
Cos'è GitHub Remarks?
GitHub Remarks è un'estensione di Chrome sviluppata da hanzichi, e la sua funzione principale è "a chrome extension that can give github repos your own remarks".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Remarks
Scarica i file di estensione GitHub Remarks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        a chrome extension that can give github repos your own remarks                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | pkepkgjchpahghcfdmdokoonapagblem | 
| URL Ufficiale | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem | 
| Descrizione | a chrome extension that can give github repos your own remarks | 
| Dimensione del File | 178 KB | 
| Conteggio Installazioni | 45 | 
| Versione Corrente | 1.2.1 | 
| Ultimo Aggiornamento | 2018-05-28 | 
| Data di Pubblicazione | 2018-05-27 | 
| Valutazione | 5.00/5 Totale 1 Valutazioni | 
| Sviluppatore | hanzichi | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/hanzichi/github-remarks | 
| URL della Pagina di Aiuto | https://github.com/hanzichi/github-remarks/issues | 
| Lingue Supportate | 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"
        }
    ]
}  |  |