Chromium Dev Refresh
Style refresh for several Chromium development websites.
What is Chromium Dev Refresh?
Chromium Dev Refresh is a Chrome extension developed by [email protected], and its main feature is "Style refresh for several Chromium development websites.".
Extension Screenshots
Download Chromium Dev Refresh Extension CRX File
Download Chromium Dev Refresh extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Chromium Dev Refresh |
ID | ddgapnelncmdhhmlkemkohfdmdnheljc |
Official URL | https://chromewebstore.google.com/detail/chromium-dev-refresh/ddgapnelncmdhhmlkemkohfdmdnheljc |
Description | Style refresh for several Chromium development websites. |
File Size | 13.22 KB |
Installation Count | 58 |
Current Version | 0.3.7 |
Last Updated | 2019-10-03 |
Publish Date | 2019-10-03 |
Developer | [email protected] |
Payment Type | free |
Supported Languages | 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" } |