Genderizer
Highlight German and Spanish nouns by gender
什么是Genderizer?
Genderizer是由Sara Bee开发的Chrome扩展程序,该扩展的主要功能是“Highlight German and Spanish nouns by gender”。
扩展截图
下载Genderizer扩展crx文件
下载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" ] } |