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 |
| 电子邮箱 | [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'"
} | |