Tab Search: Search the Content of Your Tabs

Search the entire content of all of your open tabs, jump in and out of your tabs with ease.

Τι είναι το Tab Search: Search the Content of Your Tabs;

Το Tab Search: Search the Content of Your Tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mr Violets, και η κύρια λειτουργία του είναι "Search the entire content of all of your open tabs, jump in and out of your tabs with ease.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tab Search: Search the Content of Your Tabs

Λήψη αρχείων επέκτασης Tab Search: Search the Content of Your Tabs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Tab Search allows you to search across all open tabs from one place. It's a convenient tool to help you quickly find and switch to the content you need in your tabs.

What It Does:

- Simultaneously searches the content of all open tabs.
- Simplifies tab switching.
- Directly takes you to the part of the webpage where your search term is found.

USAGE

Install and click the extension icon in the extensions tray, or use Option/Alt + F as a shortcut. Start typing, and Tab Search will show results from all your tabs. Click a result to go to that tab and the exact spot of your search term, or use arrow keys to navigate through the results.

Tab Search is an efficient way to manage multiple open tabs and find information quickly.

For optimal performance, it's recommended to use Tab Search with Chrome's memory saver feature turned off. This is because the extension needs to access the content of all tabs, and the memory saver feature might unload some tabs to conserve resources. However, Tab Search will still work as expected with memory saver on, it just means that if it encounters any unloaded tabs, it will automatically reload them when you invoke the extension and show an "Indexing tabs..." message during this process.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tab Search: Search the Content of Your Tabs Tab Search: Search the Content of Your Tabs
ID achjncdillalojkjfjemfmcfcibohpdl
Επίσημο URL https://chromewebstore.google.com/detail/tab-search-search-the-con/achjncdillalojkjfjemfmcfcibohpdl
Περιγραφή Search the entire content of all of your open tabs, jump in and out of your tabs with ease.
Μέγεθος Αρχείου 15.53 KB
Αριθμός Εγκαταστάσεων 190
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2023-11-28
Ημερομηνία Δημοσίευσης 2023-11-23
Προγραμματιστής Mr Violets
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_EXT_NAME__",
    "description": "__MSG_EXT_DESCRIPTION__",
    "version": "1.0.3",
    "manifest_version": 3,
    "minimum_chrome_version": "109",
    "default_locale": "en",
    "icons": {
        "16": ".\/images\/icon16.png",
        "24": ".\/images\/icon24.png",
        "32": ".\/images\/icon32.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "scripting",
        "favicon"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_EXT_NAME_SHORT__",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+A",
                "mac": "Alt+A",
                "chromeos": "Alt+A",
                "linux": "Alt+A"
            }
        }
    }
}