Slash to search

Jump to the search box on any website by pressing the forward slash key on your keyboard.

Τι είναι το Slash to search;

Το Slash to search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dara_tobi, και η κύρια λειτουργία του είναι "Jump to the search box on any website by pressing the forward slash key on your keyboard.".

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

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

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

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

                        This extension lets you jump to the search box on websites by pressing the forward slash '/' key.

It also lets you choose to jump to the search box automatically when a website loads; an option ideal for YouTube and Jumia.


By default, it's configured to automatically jump to search on some popular e-commerce sites (Aliexpress, Amazon, Jumia, Konga) and YouTube.


There are some sites on which this extension won't work by default: type A sites, where the search box is hidden until you click on a search icon. And type B sites where there's no search icon, but the extension doesn't jump to the search box as expected.

To set up this extension to work properly for type A sites, right click on the search icon that reveals the search box and select "add this search trigger" from the menu. After this, the extension will function properly on the site.

To set up for type B sites, right click on the search box and select "add this search box". After that, the extension will function properly.                    

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

Όνομα Slash to search Slash to search
ID bmpakgjcflhghiceamnblabiebpfokac
Επίσημο URL https://chromewebstore.google.com/detail/slash-to-search/bmpakgjcflhghiceamnblabiebpfokac
Περιγραφή Jump to the search box on any website by pressing the forward slash key on your keyboard.
Μέγεθος Αρχείου 12.88 KB
Αριθμός Εγκαταστάσεων 252
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2023-05-29
Ημερομηνία Δημοσίευσης 2019-02-04
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής dara_tobi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/andela-doladosu/slash-to-search
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_icon": "images\/slash_to_search.png",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/index.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Jump to the search box on any website by pressing the forward slash key on your keyboard.",
    "icons": {
        "48": "images\/slash_to_search.png"
    },
    "manifest_version": 3,
    "name": "Slash to search",
    "offline_enabled": true,
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "short_name": "Slash to search",
    "version": "1.0.5"
}