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. 擴展基本資訊
| 名稱 | |
| ID | cogknegaliooejgocobjbinmkgfnaknn |
| 官方網址 | 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"
]
} | |