4 Smart Shortcuts
Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.
Co je 4 Smart Shortcuts?
4 Smart Shortcuts je rozšíření Chrome vyvinuté rawbytz, a jeho hlavní funkcí je „Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření 4 Smart Shortcuts
Stáhněte si soubory rozšíření 4 Smart Shortcuts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
• '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
Základní Informace o Rozšíření
Název | 4 Smart Shortcuts |
ID | fmmofgdcmllajpdnnpllmlffogijffan |
Oficiální URL | https://chromewebstore.google.com/detail/4-smart-shortcuts/fmmofgdcmllajpdnnpllmlffogijffan |
Popis | Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist. |
Velikost souboru | 12.06 KB |
Počet instalací | 124 |
Aktuální Verze | 1.4 |
Poslední Aktualizace | 2018-03-08 |
Datum Vydání | 2018-03-07 |
Hodnocení | 5.00/5 Celkem 5 Hodnocení |
Vývojář | rawbytz |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } } |