Chromium CodeSearch Theme
Displays chromium code search in a customized theme
Chromium CodeSearch Theme란 무엇입니까?
Chromium CodeSearch Theme은(는) Kristijan Burnik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays chromium code search in a customized theme"입니다.
확장 프로그램 스크린샷
Chromium CodeSearch Theme 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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*" ] } |