Extensions shortcut
Lets you create a keyboard shortcut to the extensions page
Extensions shortcut क्या है?
Extensions shortcut metarmask द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lets you create a keyboard shortcut to the extensions page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Extensions shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An extremely lightweight extension (only runs when used) which lets you specify a custom keyboard shortcut which opens the extensions page. If turned on in the options, this extension will check if you already have an extension page open and switch to that one instead of opening a new. Because it is an option you don't have to trust this extension with a dangerous permission if you don't want to. Extension icon by Ganeshk (derived from "Wiki puzzle.svg") and Mysid (derived from "Insertpad.svg") both licensed under GFDL (http://www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0/), via Wikimedia Commons.
एक्सटेंशन की मूल जानकारी
नाम | Extensions shortcut |
ID | boalecjkpmcokhlmpomldpdeohipkkda |
आधिकारिक URL | https://chromewebstore.google.com/detail/extensions-shortcut/boalecjkpmcokhlmpomldpdeohipkkda |
विवरण | Lets you create a keyboard shortcut to the extensions page |
फ़ाइल का आकार | 12.73 KB |
स्थापना संख्या | 2,859 |
वर्तमान संस्करण | 2 |
अंतिम अपडेट | 2021-04-24 |
प्रकाशन तिथि | 2016-11-06 |
रेटिंग | 4.60/5 कुल 10 रेटिंग्स |
डेवलपर | metarmask |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extensions shortcut", "description": "Lets you create a keyboard shortcut to the extensions page", "version": "2", "permissions": [ "commands" ], "optional_permissions": [ "tabs" ], "icons": { "128": "icon\/128.png", "16": "icon\/16.png", "48": "icon\/48.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "open-extensions-page": { "description": "Open extensions page", "suggested_key": { "default": "Ctrl+Shift+E" } } }, "options_ui": { "chrome_style": true, "page": "options\/options.html" } } |