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 https://chaopeng.me, a jego główną funkcją jest „Displays chromium code search in a customized theme”.
Zrzuty ekranu rozszerzenia
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
Fork of https://chrome.google.com/webstore/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol Github: https://github.com/chaopeng/codesearch-theme
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bncjaoffkbldggnfkakmnbgfpnikielm |
Oficjalny URL | https://chromewebstore.google.com/detail/chromium-codesearch-theme/bncjaoffkbldggnfkakmnbgfpnikielm |
Opis | Displays chromium code search in a customized theme |
Rozmiar pliku | 51.27 KB |
Liczba instalacji | 89 |
Aktualna Wersja | 0.2.9 |
Ostatnia Aktualizacja | 2017-07-07 |
Data Publikacji | 2017-07-06 |
Deweloper | https://chaopeng.me |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/chaopeng/codesearch-theme |
Adres URL Strony Pomocy | https://github.com/chaopeng/codesearch-theme/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "https:\/\/cs.chromium.org\/*" ], "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.2.9", "manifest_version": 2, "permissions": [ "tabs", "storage", "https:\/\/cs.chromium.org\/*" ] } |