Chromium CodeSearch Theme
Displays chromium code search in a customized theme
Hvad er Chromium CodeSearch Theme?
Chromium CodeSearch Theme er en Chrome-udvidelse udviklet af Kristijan Burnik, og dens hovedfunktion er "Displays chromium code search in a customized theme".
Udvidelsesskærmbilleder
Download Chromium CodeSearch Theme-udvidelses-CRX-fil
Download Chromium CodeSearch Theme-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mfknemlbeilclnbkfelgpldgnbnekeol |
| Officiel URL | https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol |
| Beskrivelse | Displays chromium code search in a customized theme |
| Filstørrelse | 54.07 KB |
| Antal Installationer | 43 |
| Nuværende Version | 0.1.8 |
| Senest Opdateret | 2014-10-12 |
| Udgivelsesdato | 2014-10-11 |
| Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
| Udvikler | Kristijan Burnik |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/kristijanburnik/codesearch-theme |
| Hjælpeside-URL | https://github.com/kristijanburnik/codesearch-theme |
| Understøttede Sprog | 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*"
]
} | |