GitHub Issues
Browser extension that adds handy tweaks for issues at GitHub.
Cos'è GitHub Issues?
GitHub Issues è un'estensione di Chrome sviluppata da Richard Fridrich, e la sua funzione principale è "Browser extension that adds handy tweaks for issues at GitHub.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Issues
Scarica i file di estensione GitHub Issues 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
Browser extension that adds a few handy tweaks to issues at GitHub: - Hide label changes. - Hide reassignments. - Hide milestone changes. - Hide emojis. - Hide "+1" comments and display them as a counter/summary. Source code for this extension is available at: https://github.com/fczbkk/github-issues-extension
Informazioni di Base sull'Estensione
Nome | GitHub Issues |
ID | jlhpeckkndnaidhfihcmlihekebdepgg |
URL Ufficiale | https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg |
Descrizione | Browser extension that adds handy tweaks for issues at GitHub. |
Dimensione del File | 12.85 KB |
Conteggio Installazioni | 17 |
Versione Corrente | 0.3.2 |
Ultimo Aggiornamento | 2015-03-13 |
Data di Pubblicazione | 2015-03-13 |
Sviluppatore | Richard Fridrich |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Issues", "version": "0.3.2", "manifest_version": 2, "description": "Browser extension that adds handy tweaks for issues at GitHub.", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*\/issues\/*", "*:\/\/*.github.com\/*\/pull\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ] } |