Adict - Instant Dictionary Lookup
This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French
Adict - Instant Dictionary Lookup क्या है?
Adict - Instant Dictionary Lookup relte द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Adict - Instant Dictionary Lookup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to easily look up a phrase in English, Polish, German, Spanish or French holding ALT and double clicking or with a trigger button. You can choose one of the four available dictionaries: dictionary.com (EN), merriam-webster.com (EN), diki.pl (EN/PL) and and bab.la (EN, PL, DE, ES, FR). IMPORTANT: The extension will not work in tabs that were open prior to installation, such tabs must be refreshed. Besides, note that all extensions are disabled on Chrome Web Store pages (including this page).
एक्सटेंशन की मूल जानकारी
नाम | Adict - Instant Dictionary Lookup |
ID | npehaobgogknjhoglakcpbfbhfdgennf |
आधिकारिक URL | https://chromewebstore.google.com/detail/adict-instant-dictionary/npehaobgogknjhoglakcpbfbhfdgennf |
विवरण | This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French |
फ़ाइल का आकार | 48.35 KB |
स्थापना संख्या | 288 |
वर्तमान संस्करण | 0.4.0 |
अंतिम अपडेट | 2019-07-02 |
प्रकाशन तिथि | 2019-07-02 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | relte |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "default_locale": "en", "version": "0.4.0", "applications": { "gecko": { "id": "[email protected]" } }, "icons": { "16": "icons\/main16.png", "32": "icons\/main32.png", "48": "icons\/main48.png", "96": "icons\/main96.png", "128": "icons\/main128.png" }, "background": { "scripts": [ "lib\/browser-polyfill.js", "storage.js", "background.js" ] }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "lib\/browser-polyfill.js", "storage.js", "popup\/popup.js" ], "css": [ "popup\/popup.css" ] }, { "all_frames": true, "matches": [ "https:\/\/www.dictionary.com\/*", "https:\/\/www.merriam-webster.com\/*", "https:\/\/www.diki.pl\/*", "https:\/\/*.bab.la\/*" ], "js": [ "dictionary.js" ] }, { "all_frames": true, "matches": [ "https:\/\/www.dictionary.com\/*addon=true*" ], "css": [ "popup\/styles\/dictionary_com.css" ] }, { "all_frames": true, "matches": [ "https:\/\/www.merriam-webster.com\/*addon=true*" ], "css": [ "popup\/styles\/merriam_webster.css" ] }, { "all_frames": true, "matches": [ "https:\/\/www.diki.pl\/*addon=true*" ], "css": [ "popup\/styles\/diki.css" ] }, { "all_frames": true, "matches": [ "https:\/\/*.bab.la\/*addon=true*" ], "css": [ "popup\/styles\/bab_la.css" ] } ], "permissions": [ "storage", "webRequest", "webRequestBlocking", " |