Supersearch
This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
Supersearch란 무엇입니까?
Supersearch은(는) kolja에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch"입니다.
확장 프로그램 스크린샷
Supersearch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This plugin enables you to fulltext-supersearch all tabs in chrome. Open the extension with shortkeys: windows: Alt+Shift+F mac: Command+Shift+F chromeos: Alt+Shift+F linux: Alt+Shift+F Start typing and see the first 3 results from each tab matching your search. Select your result by mouse, tab-key or arrow-keys to jump to the tab. Find more information on https://gitlab.com/Schuemann/chrome-supersearch.
확장 프로그램 기본 정보
이름 | Supersearch |
ID | ijajhcdgklelnpmjodhfhjooiljfhdpl |
공식 URL | https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl |
설명 | This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch |
파일 크기 | 264 KB |
설치 횟수 | 151 |
현재 버전 | 1.2 |
최근 업데이트 | 2024-02-23 |
출시 날짜 | 2023-06-16 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | kolja |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://gitlab.com/Schuemann/chrome-supersearch |
도움말 페이지 URL | https://gitlab.com/Schuemann/chrome-supersearch |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Supersearch", "version": "1.2", "author": "[email protected]", "description": "This plugin enables you to fulltext-supersearch all your tabs. Find more on https:\/\/gitlab.com\/Schuemann\/chrome-supersearch", "icons": { "16": "images\/16px-Magnifying_glass_icon.svg.png", "32": "images\/32px-Magnifying_glass_icon.svg.png", "48": "images\/48px-Magnifying_glass_icon.svg.png", "128": "images\/128px-Magnifying_glass_icon.svg.png" }, "action": { "default_popup": "popup.html" }, "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "*:\/\/*\/*" ] } ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Shift+F", "windows": "Alt+Shift+F", "mac": "Command+Shift+F", "chromeos": "Alt+Shift+F", "linux": "Alt+Shift+F" } } } } |