Foreign words repetitor

The purpose of this extension is repetition of foreign words. Just for example, I am a native Russian. When I read English article…

Foreign words repetitor란 무엇입니까?

Foreign words repetitor은(는) 777Apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The purpose of this extension is repetition of foreign words. Just for example, I am a native Russian. When I read English article…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Foreign words repetitor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The purpose of this extension is repetition of foreign words.

Just for example, I am a native Russian. When I read English article in Chrome and unknown word is coming up, I am double clicking it, and Google Translate Extension (I have it installed) provides popup with translation, grammar and pronounciation.

So far, so good. So what is the problem? The problem is, that such unknown word is relatively rarely appears in texts that I used to read. So, the next time when I will meet it again, can occure after weeks or even months. And untill then, I will forget this word. For sure. (Read about forgetting curve.)

The solution for forgetting new words is so called spaced repetition. And this is what this extension for. It takes information from Google Translate popup and stores it to Chrome's local storage on my laptop. And then it repeatedly shows it to me after increasing intervals of time.

With default settings, each stored word will be shown 7 times. After 1 hour, then after 2 hours, then after 3 hours and so on.                    

확장 프로그램 기본 정보

이름 Foreign words repetitor Foreign words repetitor
ID jgnanaeeihagkcdhdcjphbgppghdccno
공식 URL https://chromewebstore.google.com/detail/foreign-words-repetitor/jgnanaeeihagkcdhdcjphbgppghdccno
설명 The purpose of this extension is repetition of foreign words. Just for example, I am a native Russian. When I read English article…
파일 크기 150 KB
설치 횟수 19
현재 버전 0.0.2
최근 업데이트 2017-06-25
출시 날짜 2017-06-25
평점 5.00/5 총 1 개의 평점
개발자 777Apps
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Foreign words repetitor",
    "version": "0.0.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendors\/jquery.js",
                "js\/content\/translator.js",
                "js\/content\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "js\/model\/wordsModel.js",
            "js\/model\/optionsModel.js",
            "js\/background\/open.js",
            "js\/background\/notification.js",
            "js\/background\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "management",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}