Chromium Dev Refresh

Style refresh for several Chromium development websites.

Chromium Dev Refresh क्या है?

Chromium Dev Refresh [email protected] द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Style refresh for several Chromium development websites."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chromium Dev Refresh एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}