Supersearch

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

Supersearch क्या है?

Supersearch kolja द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Supersearch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
            }
        }
    }
}