Hotkeys

Customisable hotkeys for basic browser actions.

Τι είναι το Hotkeys;

Το Hotkeys είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον owq, και η κύρια λειτουργία του είναι "Customisable hotkeys for basic browser actions.".

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

screenshot

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

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

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

                        HOW TO USE:
After installation, works only in NEW or RELOADED tabs. Those tabs must be WEB PAGES too. Click on the icon in location bar to disable/enable for a page.
To change options, go to Extensions and click on Options for this extension. Or right-click on icon(if present) in location bar and click Options.

LIMITATIONS: 
This extension works by plugging JavaScript into pages you load. As such, it cannot change system settings like disabling default hotkeys of Chrome. It also works only when you are in tabs with actual web pages, and not every web page works (see your luck :P). Finally, some shortcut combinations may not work. Right now, these are limitations that cannot be overcome.

CHANGES:
0.13 had a bug with saving options. Fixed now.
0.14 had some options not working. Fixed now.
0.20 change the way the blocklist works
Recent changes made because Google required developers to make some changes. As it has been so long since I worked on extensions, I might miss out some things. I won't be maintaining this extension much, though.
0.21 remove host permission

DESCRIPTION:
Enable/disable hotkeys and change shortcuts for browser actions. Default keys are from Gamer's Control.

You can enable/disable hotkeys temporarily by clicking on the icon in the omnibar.

Blocklist interface is only for advanced users. You can specify the URL where the hotkeys will be disabled.

After installation, it will only work on new or reloaded tabs.

https://github.com/owq/hotkeys-chrome

PERMISSIONS:
tabs: create new tabs (through hotkeys), etc
storage: store custom hotkeys/blocklist

CREDITS:
Gamer's Control by vawerv
shortcut.js by Binny V A
keycode.js by Jonathan Tang

AutoControl seems like a better extension (this is not an endorsement and I've not used it myself)                    

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

Όνομα Hotkeys Hotkeys
ID mmbiohbmijkiimgcgijfomelgpmdiigb
Επίσημο URL https://chromewebstore.google.com/detail/hotkeys/mmbiohbmijkiimgcgijfomelgpmdiigb
Περιγραφή Customisable hotkeys for basic browser actions.
Μέγεθος Αρχείου 97.19 KB
Αριθμός Εγκαταστάσεων 4,957
Τρέχουσα Έκδοση 0.21
Τελευταία Ενημέρωση 2021-05-05
Ημερομηνία Δημοσίευσης 2013-06-29
Αξιολόγηση 2.98/5 Συνολικά 66 Αξιολογήσεις
Προγραμματιστής owq
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hotkeys",
    "version": "0.21",
    "description": "Customisable hotkeys for basic browser actions.",
    "icons": {
        "128": "icon.png"
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Hotkeys"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "var_defaultHotkeys.js",
                "shortcut.js",
                "control.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}