Supersearch

This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch

What is Supersearch?

Supersearch is a Chrome extension developed by kolja, and its main feature is "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch".

Extension Screenshots

screenshot

Download Supersearch Extension CRX File

Download Supersearch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Supersearch Supersearch
ID ijajhcdgklelnpmjodhfhjooiljfhdpl
Official URL https://chromewebstore.google.com/detail/supersearch/ijajhcdgklelnpmjodhfhjooiljfhdpl
Description This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch
File Size 264 KB
Installation Count 151
Current Version 1.2
Last Updated 2024-02-23
Publish Date 2023-06-16
Rating 5.00/5 Total 3 Ratings
Developer kolja
Email [email protected]
Payment Type free
Extension Website https://gitlab.com/Schuemann/chrome-supersearch
Help Page URL https://gitlab.com/Schuemann/chrome-supersearch
Supported Languages 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"
            }
        }
    }
}