Code Search
Find coding answers quickly
Was ist Code Search?
Code Search ist eine Chrome-Erweiterung, die von peter.k.albert entwickelt wurde, und ihr Hauptmerkmal ist "Find coding answers quickly".
Erweiterungsscreenshots
Code Search-Erweiterungs-CRX-Datei herunterladen
Laden Sie Code Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Get questions and answers from stackoverflow, when you search on google. The stackoverflow results will be displayed on the right side of the normal google search results. The stackoverflow results will only be shown if a coding word is included in the search query (for example one of these: "js", "javascript", "css", "python", "php", "string").
Grundlegende Informationen zur Erweiterung
Name | Code Search |
ID | nejihamodfjhekdjmakngaomcejoaamh |
Offizielle URL | https://chromewebstore.google.com/detail/code-search/nejihamodfjhekdjmakngaomcejoaamh |
Beschreibung | Find coding answers quickly |
Dateigröße | 578 KB |
Installationsanzahl | 321 |
Aktuelle Version | 0.1.2 |
Letztes Update | 2020-07-20 |
Veröffentlichungsdatum | 2019-11-13 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | peter.k.albert |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code Search", "version": "0.1.2", "description": "Find coding answers quickly", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/search*", "http:\/\/www.google.com\/search*" ], "run_at": "document_start", "js": [ "materialize.min.js", "content.js", "google-code-prettify\/prettify.js" ], "css": [ "allcss.css", "iconfont\/material-icons.css", "google-code-prettify\/prettify.css" ], "all_frames": true } ], "browser_action": { "default_popup": "popup.html", "default_title": "Turn on\/off extra search results on the right side", "default_icon": { "16": "res\/16.png", "36": "res\/36.png", "48": "res\/48.png", "72": "res\/mipmap-72\/ic_launcher.png", "128": "res\/128.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/cswebapp.appspot.com\/*", "storage" ], "web_accessible_resources": [ "iconfont\/MaterialIcons-Regular.woff2", "iconfont\/MaterialIcons-Regular.woff", "iconfont\/MaterialIcons-Regular.ttf", "google-code-prettify\/*.js", "google-code-prettify\/*.css", "popup.js" ] } |