Supersearch

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

Τι είναι το Supersearch;

Το Supersearch είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kolja, και η κύρια λειτουργία του είναι "This plugin enables you to fulltext-supersearch all your tabs. Find more on https://gitlab.com/Schuemann/chrome-supersearch".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Supersearch

Λήψη αρχείων επέκτασης Supersearch σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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