Supersearch
This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
Hvad er Supersearch?
Supersearch er en Chrome-udvidelse udviklet af kolja, og dens hovedfunktion er "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch".
Udvidelsesskærmbilleder
Download Supersearch-udvidelses-CRX-fil
Download Supersearch-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ijajhcdgklelnpmjodhfhjooiljfhdpl |
| Officiel URL | https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl |
| Beskrivelse | This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch |
| Filstørrelse | 264 KB |
| Antal Installationer | 151 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2024-02-23 |
| Udgivelsesdato | 2023-06-16 |
| Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
| Udvikler | kolja |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://gitlab.com/Schuemann/chrome-supersearch |
| Hjælpeside-URL | https://gitlab.com/Schuemann/chrome-supersearch |
| Understøttede Sprog | 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"
}
}
}
} | |