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 rawbytz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में 4 Smart Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
• '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" } } } |