Quick Search
Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.
Quick Search란 무엇입니까?
Quick Search은(는) https://serdar.work에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard."입니다.
확장 프로그램 스크린샷
Quick Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Select a text and hit: - Alt+S to search on Google - Alt+W to search on Wikipedia - Alt+T to search on Twitter - Alt+A to search on Amazon - You can change the shortcuts. Use "Keyboard shortcuts" in the Chrome extension settings to do that. - Click on the extension icon to enable / disable the extension temporarily. - Google Translate search is removed in Version 2.0, due to Chrome's maximum shortcut limit of 4. It will be added soon with the context menu search feature. - Customizing the websites to search will be possible with the options feature in the next version. - This extension does not mess with your data. You can view the full source code of this extension at GitHub: https://github.com/serd/quick-search
확장 프로그램 기본 정보
이름 | Quick Search |
ID | chgmjmpmfefgaiogdnnjbfcbgcflofgi |
공식 URL | https://chromewebstore.google.com/detail/quick-search/chgmjmpmfefgaiogdnnjbfcbgcflofgi |
설명 | Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard. |
파일 크기 | 10.28 KB |
설치 횟수 | 887 |
현재 버전 | 2.0.2 |
최근 업데이트 | 2022-05-08 |
출시 날짜 | 2017-05-28 |
평점 | 3.67/5 총 9 개의 평점 |
개발자 | https://serdar.work |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://serdar.work |
개인정보 보호 정책 페이지 URL | https://serdar.work/chrome-extensions/privacy-policy.html |
지원되는 언어 | en,tr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "2.0.2", "manifest_version": 2, "description": "__MSG_extDescription__", "icons": { "128": "icon128.png" }, "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "browser_action": [], "commands": { "search-google": { "description": "Search Google", "suggested_key": { "default": "Alt+S", "mac": "Alt+S" } }, "search-wikipedia": { "description": "Search Wikipedia", "suggested_key": { "default": "Alt+W", "mac": "Alt+W" } }, "search-amazon": { "description": "Search Amazon", "suggested_key": { "default": "Alt+A", "mac": "Alt+A" } }, "search-twitter": { "description": "Search Twitter", "suggested_key": { "default": "Alt+T", "mac": "Alt+T" } } }, "permissions": [ "activeTab" ], "homepage_url": "https:\/\/serdar.work" } |