Supersearch
This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
Wat is Supersearch?
Supersearch is een Chrome-extensie ontwikkeld door kolja, en de belangrijkste functie is "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch".
Extensie Screenshots
Download het CRX-bestand van de extensie Supersearch
Download Supersearch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Supersearch |
ID | ijajhcdgklelnpmjodhfhjooiljfhdpl |
Officiële URL | https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl |
Beschrijving | This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch |
Bestandsgrootte | 264 KB |
Aantal Installaties | 151 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2024-02-23 |
Publicatiedatum | 2023-06-16 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | kolja |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://gitlab.com/Schuemann/chrome-supersearch |
Help Pagina-URL | https://gitlab.com/Schuemann/chrome-supersearch |
Ondersteunde Talen | 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" } } } } |