Search Site WE

Search within the current subdomain or within the entire domain.

Τι είναι το Search Site WE;

Το Search Site WE είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DW-dev, και η κύρια λειτουργία του είναι "Search within the current subdomain or within the entire domain.".

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

screenshot
screenshot
screenshot

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

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

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

                        CHANGES

Version 31.1

• Alt+K keyboard shortcut now works again.
• Minor bug fixes.

OVERVIEW

Search Site WE provides facilities to search within the current subdomain or within the entire domain, using a selected search engine.

TOOLBAR BUTTON AND POPUP PANEL

After installation, there will be a new green 'magnifying-glass' button on the main toolbar.

To search within a site, first click on the toolbar button to show the popup panel, then type the search terms into the text box, and then click on either of the search buttons.

Normally, the text box is filled with the text from the previous search. However, if text in the page is selected before opening the popup panel, the text box will be filled with the selected text.

CONTEXT MENU ITEMS

To search within a site, first select some text within the web page, then right-click on the selected text and choose the 'Search Site WE' menu item, and then click on either of the search sub-menu items.

SEARCH DEFAULTS

In the Options page, there are options to specify the default search settings.

KEYBOARD SHORTCUTS

To open the toolbar button popup panel, press Alt+K.

SUPPORT

Please e-mail:  [email protected]

LICENSE

Distributed under the GNU General Public License version 2.
See LICENCE.txt file and http://www.gnu.org/licenses/                    

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

Όνομα Search Site WE Search Site WE
ID hjleocmfcmdknclahmmfclopknmdkhkp
Επίσημο URL https://chromewebstore.google.com/detail/search-site-we/hjleocmfcmdknclahmmfclopknmdkhkp
Περιγραφή Search within the current subdomain or within the entire domain.
Μέγεθος Αρχείου 68.55 KB
Αριθμός Εγκαταστάσεων 1,843
Τρέχουσα Έκδοση 31.1
Τελευταία Ενημέρωση 2022-10-13
Ημερομηνία Δημοσίευσης 2020-05-20
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής DW-dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search Site WE",
    "version": "31.1",
    "description": "Search within the current subdomain or within the entire domain.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128-96.png"
    },
    "minimum_chrome_version": "88",
    "permissions": [
        "tabs",
        "webNavigation",
        "contextMenus",
        "notifications",
        "storage"
    ],
    "host_permissions": [],
    "action": {
        "default_icon": {
            "16": "icon16.png"
        },
        "default_title": "Search Site WE",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": {
            "description": "Show Search Popup",
            "suggested_key": {
                "default": "Alt+K"
            }
        }
    }
}