Genderizer
Highlight German and Spanish nouns by gender
Genderizer क्या है?
Genderizer Sara Bee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight German and Spanish nouns by gender"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Genderizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Genderizer is a Chrome extension that helps advanced language learners build stronger associations between nouns and their gender by color-coding them in the browser. It currently offers German and Spanish language support, and the colors are fully customizable to your preference and accessibility needs.
एक्सटेंशन की मूल जानकारी
नाम | Genderizer |
ID | cogknegaliooejgocobjbinmkgfnaknn |
आधिकारिक URL | https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn |
विवरण | Highlight German and Spanish nouns by gender |
फ़ाइल का आकार | 562 KB |
स्थापना संख्या | 140 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2020-07-28 |
प्रकाशन तिथि | 2020-07-28 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Sara Bee |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/SaraBee/Genderizer |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Genderizer", "version": "1.0.0", "description": "Highlight German and Spanish nouns by gender", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistant": false }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle", "all_frames": true } ], "options_ui": { "page": "popup.html", "chrome_style": true }, "permissions": [ "storage" ], "web_accessible_resources": [ "options.js", "lexicon\/german_dictionary.json", "lexicon\/spanish_dictionary.json" ] } |