Search Documents in Address Bar
Quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar.
Что такое Search Documents in Address Bar?
Search Documents in Address Bar - это расширение Chrome, разработанное https://socode.pro, и его основная функция - "Quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar.".
Снимки экрана расширения
Скачать файл CRX расширения Search Documents in Address Bar
Скачайте файлы расширений Search Documents in Address Bar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Search Documents in Address Bar |
ID | hlkgijncpebndijijbcakkcefmpniacd |
Официальный URL | https://chromewebstore.google.com/detail/search-documents-in-addre/hlkgijncpebndijijbcakkcefmpniacd |
Описание | Quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar. |
Размер файла | 2.51 MB |
Количество установок | 394 |
Текущая Версия | 3.1.7 |
Последнее Обновление | 2022-10-31 |
Дата публикации | 2020-07-03 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://socode.pro |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://socode.pro/extension |
URL страницы помощи | https://discord.gg/qeBuAR |
URL страницы политики конфиденциальности | https://socode.pro/privacy |
Поддерживаемые языки | 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" } } |