Chromium Dev Refresh

Style refresh for several Chromium development websites.

Chromium Dev Refresh란 무엇입니까?

Chromium Dev Refresh은(는) [email protected]에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Style refresh for several Chromium development websites."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Chromium Dev Refresh 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Chromium Dev Refresh Chromium Dev Refresh
ID ddgapnelncmdhhmlkemkohfdmdnheljc
공식 URL https://chromewebstore.google.com/detail/chromium-dev-refresh/ddgapnelncmdhhmlkemkohfdmdnheljc
설명 Style refresh for several Chromium development websites.
파일 크기 13.22 KB
설치 횟수 58
현재 버전 0.3.7
최근 업데이트 2019-10-03
출시 날짜 2019-10-03
개발자 [email protected]
결제 유형 free
지원되는 언어 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"
}