Vocab Master
Reminds you vocabulary while you surfing.
Vocab Master क्या है?
Vocab Master expercise Labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reminds you vocabulary while you surfing."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Vocab Master एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Reminds you English vocabulary while you surfing. Activate reminder and set reminder period. Everytime when period ends Vocab Master will intercept your web page request, and show a random vocabulary from vocabulary list that you selected on options page. Most of vocabulary items have example usages beside simple definition in English. Vocab Master is open sourced on GitHub. https://github.com/ufuk/vocab-master
एक्सटेंशन की मूल जानकारी
नाम | Vocab Master |
ID | idchajmmmliappojgonadeffochffkge |
आधिकारिक URL | https://chromewebstore.google.com/detail/vocab-master/idchajmmmliappojgonadeffochffkge |
विवरण | Reminds you vocabulary while you surfing. |
फ़ाइल का आकार | 756 KB |
स्थापना संख्या | 86 |
वर्तमान संस्करण | 1.2.2 |
अंतिम अपडेट | 2022-02-22 |
प्रकाशन तिथि | 2017-05-24 |
रेटिंग | 4.20/5 कुल 5 रेटिंग्स |
डेवलपर | expercise Labs |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://expercise.com |
सहायता पृष्ठ URL | https://github.com/ufuk/vocab-master |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Vocab Master", "description": "Reminds you vocabulary while you surfing.", "version": "1.2.2", "author": "Ufuk Uzun", "background": { "persistent": true, "scripts": [ "main.js", "js.cookie.js" ] }, "browser_action": { "default_icon": "vocab-icon.png", "default_popup": "options.html" }, "web_accessible_resources": [ "intercepting-page.html" ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking" ], "icons": { "256": "vocab-icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |