Easy Definition (Highlight and Ctrl+Space)
Easy Definition (Highlight and Ctrl+Space)
Easy Definition (Highlight and Ctrl+Space) क्या है?
Easy Definition (Highlight and Ctrl+Space) Prateek Jha द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easy Definition (Highlight and Ctrl+Space)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Easy Definition (Highlight and Ctrl+Space) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Easily get the definition of any word by pressing Ctrl + Space. How to use: On any web page highlight the word using mouse pointer and Press CTRL+Space No need to open new tabs and loose sight of your working page even for a second. It gets you the simplest ever meaning of the selected word from web. To change the shortcut command go to chrome://extensions/shortcuts. Find Easy Definition and choose any set of available commands. For any complains and queries reach us at [email protected].
एक्सटेंशन की मूल जानकारी
नाम | Easy Definition (Highlight and Ctrl+Space) |
ID | oiphjheegkcofbmfcjjjgpeeieddfnml |
आधिकारिक URL | https://chromewebstore.google.com/detail/easy-definition-highlight/oiphjheegkcofbmfcjjjgpeeieddfnml |
विवरण | Easy Definition (Highlight and Ctrl+Space) |
फ़ाइल का आकार | 17.79 KB |
स्थापना संख्या | 21 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2020-04-13 |
प्रकाशन तिथि | 2020-04-10 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Prateek Jha |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy Definition (Highlight and Ctrl+Space)", "version": "1.0.0", "description": "Easy Definition (Highlight and Ctrl+Space)", "icons": { "128": "finder_128.png" }, "browser_action": { "default_icon": "finder_128_popup.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Space", "mac": "MacCtrl+Space" } } } } |