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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 777Apps และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Foreign words repetitor

ดาวน์โหลดไฟล์ส่วนขยาย Foreign words repetitor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}