Supersearch
This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
Was ist Supersearch?
Supersearch ist eine Chrome-Erweiterung, die von kolja entwickelt wurde, und ihr Hauptmerkmal ist "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch".
Erweiterungsscreenshots
Supersearch-Erweiterungs-CRX-Datei herunterladen
Laden Sie Supersearch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ijajhcdgklelnpmjodhfhjooiljfhdpl |
| Offizielle URL | https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl |
| Beschreibung | This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch |
| Dateigröße | 264 KB |
| Installationsanzahl | 151 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2024-02-23 |
| Veröffentlichungsdatum | 2023-06-16 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | kolja |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://gitlab.com/Schuemann/chrome-supersearch |
| Hilfeseite URL | https://gitlab.com/Schuemann/chrome-supersearch |
| Unterstützte Sprachen | 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"
}
}
}
} | |