Wordology
Adds a calque to foreign-language web-pages to aid language learning.
什麼是Wordology?
Wordology是由wordologyaddon開發的Chrome擴展程式,該擴展的主要功能是“Adds a calque to foreign-language web-pages to aid language learning.”。
擴展截圖
下載Wordology擴展crx文件
下載Wordology擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Ask any non-native speaker how they learned to speak such good English, and you'll generally get a response involving watching movies with subtitles, playing video games online, or living in an English-speaking country. You don't learn a language in order to use it, you learn a language by using it. Wordology is a browser add-on for Chrome and Firefox intended to help turn your foreign-language reading from homework into a natural part of your routine. Inspired by Lingq and FLTR, Wordology allows you to add translations for individual words and display them with a simple mouse-over. Words are color coded: green for known words, and red for unknown, helping visualize your progress. In addition, Wordology's "Smart Matching" heuristics will automatically detect variant forms of words such as plural nouns or conjugated verbs, saving you from having to add every single form of a word. Wordology does not support phones or tablets.
擴展基本資訊
名稱 | Wordology |
ID | ganonoebdpdnhcbolgkelccfaffgmlpd |
官方網址 | https://chromewebstore.google.com/detail/wordology/ganonoebdpdnhcbolgkelccfaffgmlpd |
簡介 | Adds a calque to foreign-language web-pages to aid language learning. |
檔案大小 | 172 KB |
安裝次數 | 4,892 |
目前版本 | 2 |
更新時間 | 2020-01-09 |
上架時間 | 2020-01-05 |
評分 | 4.60/5 共 10 次評分 |
開發者 | wordologyaddon |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/geajack/Wordology |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wordology", "description": "Adds a calque to foreign-language web-pages to aid language learning.", "version": "2", "icons": { "48": ".\/icons\/icon48.png", "96": ".\/icons\/icon96.png" }, "background": { "scripts": [ "browser-polyfill.min.js", "strings.js", "OptionsManager.js", "messages.js", "Dictionary.js", "DictionaryFetcherBackground.js", "TabState.js", "ToggleManagerBackground.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/\/*\/*" ], "css": [ "vex\/vex-theme-custom.css", "vex\/vex_custom.css", "WordEditDialog.css", "WordElement.css" ], "js": [ "browser-polyfill.min.js", "vex\/vex.combined.min.js", "strings.js", "OptionsManager.js", "messages.js", "wordmatching.js", "WordEditDialog.js", "DictionaryFetcherPage.js", "WordElement.js", "WordManager.js", "ToggleManagerPage.js", "content_script.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": ".\/icons\/icon_inactive_32.png" }, "options_ui": { "open_in_tab": true, "page": ".\/settings\/index.html" }, "permissions": [ "*:\/\/*\/*", "webNavigation", "storage" ] } |