Search Documents in Address Bar
Quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar.
Was ist Search Documents in Address Bar?
Search Documents in Address Bar ist eine Chrome-Erweiterung, die von https://socode.pro entwickelt wurde, und ihr Hauptmerkmal ist "Quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar.".
Erweiterungsscreenshots
Search Documents in Address Bar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Search Documents in Address Bar-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
You can quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar. See how to use this extension: https://socode.pro/extension Privacy Policy: https://socode.pro/privacy
Grundlegende Informationen zur Erweiterung
Name | Search Documents in Address Bar |
ID | hlkgijncpebndijijbcakkcefmpniacd |
Offizielle URL | https://chromewebstore.google.com/detail/search-documents-in-addre/hlkgijncpebndijijbcakkcefmpniacd |
Beschreibung | Quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar. |
Dateigröße | 2.51 MB |
Installationsanzahl | 394 |
Aktuelle Version | 3.1.7 |
Letztes Update | 2022-10-31 |
Veröffentlichungsdatum | 2020-07-03 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://socode.pro |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://socode.pro/extension |
Hilfeseite URL | https://discord.gg/qeBuAR |
URL der Datenschutzrichtlinien-Seite | https://socode.pro/privacy |
Unterstützte Sprachen | de,en,fr,es,it,pt-BR,ru,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_app_name__", "default_locale": "en", "version": "3.1.7", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "__MSG_app_description__", "homepage_url": "https:\/\/socode.pro", "short_name": "SOCODE", "permissions": [ "storage", "identity", "https:\/\/github.com\/" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "author": "elliotreborn", "minimum_chrome_version": "64", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "SOCODE" }, "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/socode.pro\/*" ], "js": [ "markContentScript.bundle.js" ] } ], "omnibox": { "keyword": "sc" } } |