Dropdown Search
Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid
Wat is Dropdown Search?
Dropdown Search is een Chrome-extensie ontwikkeld door hi2rashid, en de belangrijkste functie is "Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid".
Extensie Screenshots
Download het CRX-bestand van de extensie Dropdown Search
Download Dropdown Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Dropdown Search |
ID | kgjaddbcmpmacilgaekjfelhdebfjgib |
Officiële URL | https://chromewebstore.google.com/detail/dropdown-search/kgjaddbcmpmacilgaekjfelhdebfjgib |
Beschrijving | Drop down Search - Convert all dropdown to be searchable dropdowns - Rashid |
Bestandsgrootte | 97.94 KB |
Aantal Installaties | 3,694 |
Huidige Versie | 1.4.7 |
Laatst Bijgewerkt | 2017-05-17 |
Publicatiedatum | 2017-05-17 |
Beoordeling | 4.42/5 Totaal 26 Beoordelingen |
Ontwikkelaar | hi2rashid |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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'" } |