Handy Search

Advanced browsing on the internet.

Τι είναι το Handy Search;

Το Handy Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Roman Sukhorukov, και η κύρια λειτουργία του είναι "Advanced browsing on the internet.".

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

screenshot
screenshot

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

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

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

                        Have you ever googled? I bet you do! Or searched something navigating through the links on a page, eventually finding yourself with a number of tabs opened, which are not needed anymore after you've found that you were looking for. It would be nice to indicate to the browser that the tabs could be closed, instead of closing them by hand. 

This extension provides you with such a feature through a handy toolbar at the bottom of the page which lets you close connected tabs and switch between them in one click. You're also offered a way to navigate to any suggested page from the search engine results page in one tab without switching back and forth. One click navigation!

Features:
- The Suggests button works in two modes: as a button on short click and as a select on holding left mouse button. Middle mouse button click opens a page in a new tab.

- For a faster navigation consider using hot keys:
Ctrl + Shift + F – Found
Ctrl + Shift + K – The Next page
Ctrl + M – Minimize/restore the panel

For more information or in case of any suggestions/issues visit:
https://github.com/vandy/handy-search                    

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

Όνομα Handy Search Handy Search
ID clhaemfeepnllbbjfkkhlcgbfgnjilnl
Επίσημο URL https://chromewebstore.google.com/detail/handy-search/clhaemfeepnllbbjfkkhlcgbfgnjilnl
Περιγραφή Advanced browsing on the internet.
Μέγεθος Αρχείου 42.79 KB
Αριθμός Εγκαταστάσεων 109
Τρέχουσα Έκδοση 1.2.0
Τελευταία Ενημέρωση 2021-04-04
Ημερομηνία Δημοσίευσης 2020-11-12
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Roman Sukhorukov
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/vandy/handy-search
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/vandy/handy-search/issues
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "author": "__MSG_extAuthor__",
    "version": "1.2.0",
    "default_locale": "en",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "icons": {
        "16": "\/icons\/logo16.png",
        "48": "\/icons\/logo48.png",
        "128": "\/icons\/logo128.png"
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "commands": {
        "toggle-notification": {
            "suggested_key": {
                "default": "Ctrl+M"
            },
            "description": "Minimize\/restore notification"
        },
        "accept-notification": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "description": "Found"
        },
        "next-notification": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Go to next Suggested page"
        }
    },
    "permissions": [
        "tabs",
        "webRequest",
        "webNavigation",
        "*:\/\/*\/*",
        "ftp:\/\/*\/*"
    ]
}