Search all Tabs

A powerful offline indexing and searching tool to find matching terms in tab's title and content

Τι είναι το Search all Tabs;

Το Search all Tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lunu.bounir, και η κύρια λειτουργία του είναι "A powerful offline indexing and searching tool to find matching terms in tab's title and content".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Preview:
https://www.youtube.com/watch?v=ks0PDxFBrA0

This extension provides a powerful content searching tool for you to easily find the relevant tab among many open ones. Like all search engines, this extension supports search operators like "AND" and "OR". You can use this extension to find the relevant content when there are many open tabs like a normal tab manager extension. It is also possible to index local files as well. This extension supports parsing content from around 30 languages and displays a preview (snippet) for the matching result. You can click on each search entry to directly activate the container tab.

Notes:
1. Make sure to read the FAQs page to get yourself familiar with the search operators and keywords.
2. This extension works offline and stores the indexing database in your browser memory. There is no server-side interaction whatsoever.
3. This extension supports two different indexing engines: Xapian (a C++ engine) and Lunr (a pure JavaScript engine).

Features:
1. Copy all URLs to the user's clipboard
2. Group all matched tab as a new window
3. Keyboard-only controls
4. Supports dark theme
5. Do not search on duplicated tabs
6. Search inside PDF tabs
7. Supports deep search: display more matching snippets for a single tab
8. Close the selected tabs from the search results                    

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

Όνομα Search all Tabs Search all Tabs
ID ndfnfhnlgoocpbbjjjfmiojdfcgcfomn
Επίσημο URL https://chromewebstore.google.com/detail/search-all-tabs/ndfnfhnlgoocpbbjjjfmiojdfcgcfomn
Περιγραφή A powerful offline indexing and searching tool to find matching terms in tab's title and content
Μέγεθος Αρχείου 957 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 0.5.1
Τελευταία Ενημέρωση 2023-12-05
Ημερομηνία Δημοσίευσης 2020-06-15
Αξιολόγηση 4.70/5 Συνολικά 54 Αξιολογήσεις
Προγραμματιστής lunu.bounir
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/search-all-tabs.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/search-all-tabs.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/lunu.bounir.txt
Υποστηριζόμενες Γλώσσες de,en,fr,nl,tr,es,it,pl,pt-BR,pt-PT,sv,cs,el,bg,ru,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.5.1",
    "name": "Search all Tabs",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "offline_enabled": true,
    "homepage_url": "https:\/\/webextension.org\/listing\/search-all-tabs.html",
    "permissions": [
        "storage",
        "contextMenus",
        "scripting",
        "favicon",
        "unlimitedStorage"
    ],
    "host_permissions": [
        ""
    ],
    "optional_permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "\/data\/popup\/index.html"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "commands": {
        "_execute_action": [],
        "_execute_sidebar_action": {
            "description": "Open the sidebar view with a shortcut"
        }
    }
}