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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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*" ] } |