Chromium Dev Refresh
Style refresh for several Chromium development websites.
Co je Chromium Dev Refresh?
Chromium Dev Refresh je rozšíření Chrome vyvinuté [email protected], a jeho hlavní funkcí je „Style refresh for several Chromium development websites.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Chromium Dev Refresh
Stáhněte si soubory rozšíření Chromium Dev Refresh 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í
This extension gives a style refresh to several web sites used for Chromium development. These sites include: - Code Search: https://cs.chromium.org - Bug Reports: https://crbug.com - Code Reviews: https://codereview.chromium.org - PolyGerrit Code Reviews: https://chromium-review.googlesource.com - Git Blame: https://chromium.googlesource.com
Základní Informace o Rozšíření
Název | Chromium Dev Refresh |
ID | ddgapnelncmdhhmlkemkohfdmdnheljc |
Oficiální URL | https://chromewebstore.google.com/detail/chromium-dev-refresh/ddgapnelncmdhhmlkemkohfdmdnheljc |
Popis | Style refresh for several Chromium development websites. |
Velikost souboru | 13.22 KB |
Počet instalací | 58 |
Aktuální Verze | 0.3.7 |
Poslední Aktualizace | 2019-10-03 |
Datum Vydání | 2019-10-03 |
Vývojář | [email protected] |
Typ Platby | free |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "*:\/\/cs.chromium.org\/*" ], "js": [ "fonts.js" ], "css": [ "codesearch.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/code.google.com\/p\/chromium\/issues*", "*:\/\/bugs.chromium.org\/p\/chromium\/issues*" ], "js": [ "fonts.js" ], "css": [ "crbug.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/chromium.googlesource.com\/*" ], "exclude_globs": [ "*.md" ], "js": [ "fonts.js" ], "css": [ "gitblame.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/codereview.chromium.org\/*" ], "js": [ "fonts.js" ], "css": [ "codereview.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/chromium-review.googlesource.com\/*", "*:\/\/polymer1-chromium-review.googlesource.com\/*" ], "js": [ "fonts.js" ], "css": [ "polygerrit.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/polymer2-chromium-review.googlesource.com\/*" ], "js": [ "fonts.js" ], "css": [ "polygerrit2.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/codereview.chromium.org\/*" ], "js": [ "utc-to-local-time.js" ], "run_at": "document_end" } ], "description": "Style refresh for several Chromium development websites.", "manifest_version": 2, "name": "Chromium Dev Refresh", "version": "0.3.7" } |