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文件
下载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" } } } } |