Chromium CodeSearch Theme

Displays chromium code search in a customized theme

Chromium CodeSearch Theme क्या है?

Chromium CodeSearch Theme Kristijan Burnik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays chromium code search in a customized theme"।

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

screenshot

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

crx प्रारूप में Chromium CodeSearch Theme एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Ideal for Chromium devs!

Simple extension to help you rest your eyes while navigating the source tree.

Supporting themes:
- Monokai
- Twilight
- Space cadet
- Blackboard
- Espresso Libre
- Pastels on Dark
- Zenburnesque 
- Cobalt [new: Sep 17]

Shortcuts:
- Next theme: CTRL + SHIFT + L.
- Previous theme: CTRL + SHIFT + K.

Fork and send pull requests for updates:
https://github.com/kristijanburnik/codesearch-theme

---

More style coverage is incrementally added.
New themes and features coming nightly!

Please comment and report missing parts and/or bugs.                    

एक्सटेंशन की मूल जानकारी

नाम Chromium CodeSearch Theme Chromium CodeSearch Theme
ID mfknemlbeilclnbkfelgpldgnbnekeol
आधिकारिक URL https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol
विवरण Displays chromium code search in a customized theme
फ़ाइल का आकार 54.07 KB
स्थापना संख्या 43
वर्तमान संस्करण 0.1.8
अंतिम अपडेट 2014-10-12
प्रकाशन तिथि 2014-10-11
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर Kristijan Burnik
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kristijanburnik/codesearch-theme
सहायता पृष्ठ URL https://github.com/kristijanburnik/codesearch-theme
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/code.google.com\/p\/chromium\/codesearch*"
            ],
            "js": [
                "js\/jquery-1.11.1.min.js",
                "js\/generated.js",
                "js\/chromiumcs_content_script.js"
            ],
            "css": [
                "css\/generated.css"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Displays chromium code search in a customized theme",
    "short_name": "codesearch-theme",
    "icons": {
        "128": "themes-icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "name": "Chromium CodeSearch Theme",
    "page_action": {
        "default_name": "Select style",
        "default_icon": "themes-icon.png",
        "default_popup": "popup.html"
    },
    "version": "0.1.8",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/code.google.com\/p\/chromium\/codesearch*"
    ]
}