Autoviewed
Mark as viewed files that aren't worth reviewing in your Github pull requests
Co je Autoviewed?
Autoviewed je rozšíření Chrome vyvinuté luismahou, a jeho hlavní funkcí je „Mark as viewed files that aren't worth reviewing in your Github pull requests“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Autoviewed
Stáhněte si soubory rozšíření Autoviewed ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 🎉
Základní Informace o Rozšíření
Název | Autoviewed |
ID | occcjmolphcfebdeichmoflmfgeefjef |
Oficiální URL | https://chromewebstore.google.com/detail/autoviewed/occcjmolphcfebdeichmoflmfgeefjef |
Popis | Mark as viewed files that aren't worth reviewing in your Github pull requests |
Velikost souboru | 235 KB |
Počet instalací | 37 |
Aktuální Verze | 1.2.0 |
Poslední Aktualizace | 2022-02-15 |
Datum Vydání | 2020-07-02 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | luismahou |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Luismahou/autoviewed |
URL Stránky Nápovědy | https://github.com/Luismahou/autoviewed/issues |
Podporované Jazyky | 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" ] } |