Advanced Search
Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.
Advanced Search란 무엇입니까?
Advanced Search은(는) Mac Gainor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window."입니다.
확장 프로그램 스크린샷
Advanced Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds a simple interface to write precise search queries for google, google-scholar, wikipedia, and youtube. After installing, use `Ctrl+Shift+F` to toggle the search window. Try `Tab` and `Shift+Tab` to manipulate inputs. Try `UpArrow` and `DownArrow` to navigate the selected search engine. Use `Enter` to submit your search. If the extension doesn't work immediately, try restarting your browser.
확장 프로그램 기본 정보
이름 | |
ID | elgfhefgbaekbebmlmdhildnlhinmnak |
공식 URL | https://chrome.google.com/webstore/detail/advanced-search/elgfhefgbaekbebmlmdhildnlhinmnak |
설명 | Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window. |
파일 크기 | 150 KB |
설치 횟수 | 577 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2017-11-05 |
출시 날짜 | 2017-11-05 |
평점 | 4.50/5 총 8 개의 평점 |
개발자 | Mac Gainor |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mac-s-g/chrome-advanced-search |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Advanced Search", "description": "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.", "version": "0.1.3", "icons": { "16": "images\/search-icon-16.png", "48": "images\/search-icon-48.png", "128": "images\/search-icon-128.png" }, "browser_action": { "default_title": "Open Advanced Search" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "style\/content.css" ], "js": [ "js\/dependencies\/[email protected]", "js\/content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ "style\/content.css", "style\/fonts\/Roboto-Regular.ttf", "images\/google-logo-scaled.png", "images\/wikipedia-logo-scaled.png", "images\/youtube-logo-scaled.png", "images\/google-scholar-logo-scaled.png" ] } |