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はhttps://socode.proによって開発されたChromeの拡張機能で、その主な機能は「Quickly and comfortably search multiple (e.g. css, git, python) programming documents in the address bar.」です。
拡張機能のスクリーンショット
Search Documents in Address Bar拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |