Chromium CodeSearch Theme

Displays chromium code search in a customized theme

Co to jest Chromium CodeSearch Theme?

Chromium CodeSearch Theme to rozszerzenie Chrome opracowane przez Kristijan Burnik, a jego główną funkcją jest „Displays chromium code search in a customized theme”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chromium CodeSearch Theme

Pobierz pliki rozszerzeń Chromium CodeSearch Theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Chromium CodeSearch Theme Chromium CodeSearch Theme
ID mfknemlbeilclnbkfelgpldgnbnekeol
Oficjalny URL https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol
Opis Displays chromium code search in a customized theme
Rozmiar pliku 54.07 KB
Liczba instalacji 43
Aktualna Wersja 0.1.8
Ostatnia Aktualizacja 2014-10-12
Data Publikacji 2014-10-11
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper Kristijan Burnik
Typ Płatności free
Strona Rozszerzenia https://github.com/kristijanburnik/codesearch-theme
Adres URL Strony Pomocy https://github.com/kristijanburnik/codesearch-theme
Obsługiwane Języki 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*"
    ]
}