4 Smart Shortcuts
Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.
Τι είναι το 4 Smart Shortcuts;
Το 4 Smart Shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rawbytz, και η κύρια λειτουργία του είναι "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης 4 Smart Shortcuts
Λήψη αρχείων επέκτασης 4 Smart Shortcuts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
• 'Smart' keyboard shortcuts won't duplicate existing tabs. • Great for fullscreen. • Support for "chrome://" system shortcuts like, chrome://extensions & chrome://apps • Goes to existing tabs based on a "starts with" matching pattern. EXAMPLES: • Shortcut: https://www.google.com goes to the existing tab https://www.google.com/contacts • Shortcut: https://www.google.com/contacts does NOT go to the existing tab https://www.google.com
Βασικές Πληροφορίες Επέκτασης
Όνομα | 4 Smart Shortcuts |
ID | fmmofgdcmllajpdnnpllmlffogijffan |
Επίσημο URL | https://chromewebstore.google.com/detail/4-smart-shortcuts/fmmofgdcmllajpdnnpllmlffogijffan |
Περιγραφή | Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist. |
Μέγεθος Αρχείου | 12.06 KB |
Αριθμός Εγκαταστάσεων | 124 |
Τρέχουσα Έκδοση | 1.4 |
Τελευταία Ενημέρωση | 2018-03-08 |
Ημερομηνία Δημοσίευσης | 2018-03-07 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | rawbytz |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "4 Smart Shortcuts", "version": "1.4", "description": "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "icons": { "128": "4SS_128.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "commands": { "site1": { "description": "Launch Site 1" }, "site2": { "description": "Launch Site 2" }, "site3": { "description": "Launch Site 3" }, "site4": { "description": "Launch Site 4" } } } |