Dropdown Search
Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid
What is Dropdown Search?
Dropdown Search is a Chrome extension developed by hi2rashid, and its main feature is "Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid".
Extension Screenshots
Download Dropdown Search Extension CRX File
Download Dropdown Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Dropdown Search |
ID | kgjaddbcmpmacilgaekjfelhdebfjgib |
Official URL | https://chromewebstore.google.com/detail/dropdown-search/kgjaddbcmpmacilgaekjfelhdebfjgib |
Description | Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid |
File Size | 97.94 KB |
Installation Count | 3,694 |
Current Version | 1.4.7 |
Last Updated | 2017-05-17 |
Publish Date | 2017-05-17 |
Rating | 4.42/5 Total 26 Ratings |
Developer | hi2rashid |
[email protected] | |
Payment Type | free |
Supported Languages | 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'" } |