Genderizer
Highlight German and Spanish nouns by gender
Что такое Genderizer?
Genderizer - это расширение Chrome, разработанное Sara Bee, и его основная функция - "Highlight German and Spanish nouns by gender".
Снимки экрана расширения
Скачать файл CRX расширения Genderizer
Скачайте файлы расширений Genderizer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } |