Genderizer
Highlight German and Spanish nouns by gender
Wat is Genderizer?
Genderizer is een Chrome-extensie ontwikkeld door Sara Bee, en de belangrijkste functie is "Highlight German and Spanish nouns by gender".
Extensie Screenshots
Download het CRX-bestand van de extensie Genderizer
Download Genderizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Genderizer |
ID | cogknegaliooejgocobjbinmkgfnaknn |
Officiële URL | https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn |
Beschrijving | Highlight German and Spanish nouns by gender |
Bestandsgrootte | 562 KB |
Aantal Installaties | 140 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2020-07-28 |
Publicatiedatum | 2020-07-28 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Sara Bee |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/SaraBee/Genderizer |
Ondersteunde Talen | 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" ] } |