Genderizer
Highlight German and Spanish nouns by gender
Co je Genderizer?
Genderizer je rozšíření Chrome vyvinuté Sara Bee, a jeho hlavní funkcí je „Highlight German and Spanish nouns by gender“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Genderizer
Stáhněte si soubory rozšíření Genderizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Genderizer |
ID | cogknegaliooejgocobjbinmkgfnaknn |
Oficiální URL | https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn |
Popis | Highlight German and Spanish nouns by gender |
Velikost souboru | 562 KB |
Počet instalací | 140 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2020-07-28 |
Datum Vydání | 2020-07-28 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Sara Bee |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/SaraBee/Genderizer |
Podporované Jazyky | 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" ] } |