GitHub with a cape
Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
Cos'è GitHub with a cape?
GitHub with a cape è un'estensione di Chrome sviluppata da NicoSantangelo, e la sua funzione principale è "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub with a cape
Scarica i file di estensione GitHub with a cape 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
All options can be turn on and off, it includes: - Notifications modal - Resizeable splitted diffs - Add collapsable diffs - Show All / Hide All buttons - Show the current diff name on the sticky header - Add collapsable commits - Toggle contributions by clicking the added/deleted stats - Show outdated diff comments by default - Highlights the outdated diff icon (the X) on PRs
Informazioni di Base sull'Estensione
Nome | GitHub with a cape |
ID | ohkgmmldhbadfleajjafdeahmakbbcpi |
URL Ufficiale | https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi |
Descrizione | Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like! |
Dimensione del File | 31.47 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 1.4.4 |
Ultimo Aggiornamento | 2017-02-12 |
Data di Pubblicazione | 2017-02-11 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | NicoSantangelo |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github-with-a-cape.nicosantangelo.com/ |
URL della Pagina di Aiuto | https://github.com/NicoSantangelo/github-with-a-cape/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub with a cape", "description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!", "short_name": "Github with a cape", "version": "1.4.4", "icons": { "18": "icons\/18.png", "19": "icons\/19.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "http:\/\/www.github.com\/*", "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "configuration.js", "notifications.js", "content.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options\/options.html", "options_ui": { "page": "options\/options.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ "notifications.html" ] } |