Chromium Dev Refresh

Style refresh for several Chromium development websites.

Chromium Dev Refresh là gì?

Chromium Dev Refresh là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Style refresh for several Chromium development websites.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chromium Dev Refresh

Tải xuống các tệp mở rộng Chromium Dev Refresh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chromium Dev Refresh Chromium Dev Refresh
ID ddgapnelncmdhhmlkemkohfdmdnheljc
URL Chính Thức https://chromewebstore.google.com/detail/chromium-dev-refresh/ddgapnelncmdhhmlkemkohfdmdnheljc
Mô tả Style refresh for several Chromium development websites.
Kích Thước Tệp 13.22 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 0.3.7
Cập Nhật Lần Cuối 2019-10-03
Ngày Phát Hành 2019-10-03
Nhà Phát Triển [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}