Dropdown Search
Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid
Dropdown Searchとは何ですか?
Dropdown Searchはhi2rashidによって開発されたChromeの拡張機能で、その主な機能は「Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid」です。
拡張機能のスクリーンショット
Dropdown Search拡張機能のCRXファイルをダウンロード
Dropdown Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Search any Dropdown.
Click on this Extension from any page, it will convert any drop down to be searchable dropdown.
Right Click Options -> Enter any URL you want to convert All the Time 拡張機能の基本情報
| 名前 | |
| ID | kgjaddbcmpmacilgaekjfelhdebfjgib |
| 公式URL | https://chromewebstore.google.com/detail/dropdown-search/kgjaddbcmpmacilgaekjfelhdebfjgib |
| 説明 | Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid |
| ファイルサイズ | 97.94 KB |
| インストール数 | 3,694 |
| 現在のバージョン | 1.4.7 |
| 最終更新日 | 2017-05-17 |
| 公開日 | 2017-05-17 |
| 評価 | 4.42/5 合計 26 レビュー |
| 開発者 | hi2rashid |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Dropdown Search",
"description": "Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid",
"version": "1.4.7",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"icons": {
"19": "icon.png",
"38": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png",
"128": "icon.png"
},
"permissions": [
"tabs",
"activeTab",
"https:\/\/*\/*",
"http:\/\/*\/*",
"activeTab",
"storage"
],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery.min.js",
"select2.full.js"
],
"css": [
"select2.min.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"jquery.min.js",
"select2.full.js"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |