Chromium CodeSearch Theme

Displays chromium code search in a customized theme

Что такое Chromium CodeSearch Theme?

Chromium CodeSearch Theme - это расширение Chrome, разработанное Kristijan Burnik, и его основная функция - "Displays chromium code search in a customized theme".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Chromium CodeSearch Theme

Скачайте файлы расширений Chromium CodeSearch Theme в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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*"
    ]
}