GitHub Enhancement Suite
A set of tools to enhance the GitHub experience.
Cos'è GitHub Enhancement Suite?
GitHub Enhancement Suite è un'estensione di Chrome sviluppata da DTwigs, e la sua funzione principale è "A set of tools to enhance the GitHub experience.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Enhancement Suite
Scarica i file di estensione GitHub Enhancement Suite 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
The GitHub Enhancement Suite improves your GitHub experience.
Tools:
File Filter: Filter your github files by file type when viewing code changes.
Commit Compare: a small "down arrow" icon next to each commit in a PR allowing you to compare that commit to the latest commit in that PR.
Source Code:
https://github.com/DTwigs/FilterDiff Informazioni di Base sull'Estensione
| Nome | |
| ID | eiehflbilhldhfbnolbnggcapbjmnpmo |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-enhancement-suite/eiehflbilhldhfbnolbnggcapbjmnpmo |
| Descrizione | A set of tools to enhance the GitHub experience. |
| Dimensione del File | 56.24 KB |
| Conteggio Installazioni | 260 |
| Versione Corrente | 0.4 |
| Ultimo Aggiornamento | 2014-02-22 |
| Data di Pubblicazione | 2014-02-21 |
| Valutazione | 2.00/5 Totale 1 Valutazioni |
| Sviluppatore | DTwigs |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Enhancement Suite",
"version": "0.4",
"manifest_version": 2,
"description": "A set of tools to enhance the GitHub experience.",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"browser_action": {
"name": "Initialize GitHub Enhancement Suite",
"default_icon": "images\/icon128.png"
},
"web_accessible_resources": [
"images\/icon.png"
],
"content_scripts": [
{
"js": [
"jquery.min.js",
"background.js"
],
"css": [
"mystyles.css"
],
"matches": [
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
]
}
]
} | |