Chromium CodeSearch Theme

Displays chromium code search in a customized theme

Co je Chromium CodeSearch Theme?

Chromium CodeSearch Theme je rozšíření Chrome vyvinuté Kristijan Burnik, a jeho hlavní funkcí je „Displays chromium code search in a customized theme“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Chromium CodeSearch Theme

Stáhněte si soubory rozšíření Chromium CodeSearch Theme ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Chromium CodeSearch Theme Chromium CodeSearch Theme
ID mfknemlbeilclnbkfelgpldgnbnekeol
Oficiální URL https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol
Popis Displays chromium code search in a customized theme
Velikost souboru 54.07 KB
Počet instalací 43
Aktuální Verze 0.1.8
Poslední Aktualizace 2014-10-12
Datum Vydání 2014-10-11
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář Kristijan Burnik
Typ Platby free
Webové stránky Rozšíření https://github.com/kristijanburnik/codesearch-theme
URL Stránky Nápovědy https://github.com/kristijanburnik/codesearch-theme
Podporované Jazyky 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*"
    ]
}