Supersearch
This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
Supersearchคืออะไร?
Supersearch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kolja และคุณลักษณะหลักของมันคือ "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Supersearch
ดาวน์โหลดไฟล์ส่วนขยาย Supersearch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } } } |