Supersearch
This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
Supersearch là gì?
Supersearch là một tiện ích mở rộng Chrome được phát triển bởi kolja, và tính năng chính của nó là "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Supersearch
Tải xuống các tệp mở rộng Supersearch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Supersearch |
ID | ijajhcdgklelnpmjodhfhjooiljfhdpl |
URL Chính Thức | https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl |
Mô tả | This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch |
Kích Thước Tệp | 264 KB |
Số Lần Cài Đặt | 151 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2024-02-23 |
Ngày Phát Hành | 2023-06-16 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | kolja |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://gitlab.com/Schuemann/chrome-supersearch |
URL Trang Trợ Giúp | https://gitlab.com/Schuemann/chrome-supersearch |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |