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."입니다.

확장 프로그램 스크린샷

screenshot

Wordology 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Wordology
ID ganonoebdpdnhcbolgkelccfaffgmlpd
공식 URL 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"
    ]
}