Autoviewed
Mark as viewed files that aren't worth reviewing in your Github pull requests
Cos'è Autoviewed?
Autoviewed è un'estensione di Chrome sviluppata da luismahou, e la sua funzione principale è "Mark as viewed files that aren't worth reviewing in your Github pull requests".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Autoviewed
Scarica i file di estensione Autoviewed 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
I know, I know, you shouldn't have auto-generated files in your git repository, but you know, sometimes you do 😄. This extension will mark as viewed those files automatically without human intervention 🎉
Informazioni di Base sull'Estensione
Nome | Autoviewed |
ID | occcjmolphcfebdeichmoflmfgeefjef |
URL Ufficiale | https://chromewebstore.google.com/detail/autoviewed/occcjmolphcfebdeichmoflmfgeefjef |
Descrizione | Mark as viewed files that aren't worth reviewing in your Github pull requests |
Dimensione del File | 235 KB |
Conteggio Installazioni | 37 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2022-02-15 |
Data di Pubblicazione | 2020-07-02 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | luismahou |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Luismahou/autoviewed |
URL della Pagina di Aiuto | https://github.com/Luismahou/autoviewed/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Autoviewed", "version": "1.2.0", "description": "Mark as viewed files that aren't worth reviewing in your Github pull requests", "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png", "256": "images\/icon256.png", "512": "images\/icon512.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*" ], "js": [ "content-script.js" ] } ], "action": { "default_title": "Autoviewed", "default_icon": "images\/icon48.png", "default_popup": "popup.html" }, "options_page": "options.html", "permissions": [ "declarativeContent", "storage" ] } |