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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Dropdown Search |
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'" } |