Kioku

Learn Japanese by browsing the web and watching Netflix!

Kiokuคืออะไร?

Kioku เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kioku และคุณลักษณะหลักของมันคือ "Learn Japanese by browsing the web and watching Netflix!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

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

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

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

                        Kioku keeps track of your known words and assists you when reading regular websites and watching Netflix. It highlights words you are still learning or don't know yet and displays Furigana over unknown ones. For every website you can view known and unknown word counts. Your learning progress can be imported from Anki.

To analyze a specific text on any website simply highlight it, right click and press "Kioku" in the context menu. Press the 1, 2, 3, 4 keys when hovering over analyzed words to change their learning status. Press the extension icon at the top right (you might want to pin it) to view statistics about the current page.

On Netflix press B to toggle the subtitle sidebar. Press W to toggle the subtitle display. Press A, S, D to go to the last, current or next subtitle.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Kioku Kioku
ID acnicpmofmkaaamjbdefggibkgkohnbi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/kioku/acnicpmofmkaaamjbdefggibkgkohnbi
คำอธิบาย Learn Japanese by browsing the web and watching Netflix!
ขนาดไฟล์ 14.85 MB
จำนวนการติดตั้ง 16
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2022-01-11
วันที่เผยแพร่ 2022-01-11
ผู้พัฒนา Kioku
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://kioku-dev.github.io/privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kioku",
    "description": "Learn Japanese by browsing the web and watching Netflix!",
    "version": "0.2.0",
    "icons": {
        "16": "data\/images\/icon16.png",
        "32": "data\/images\/icon32.png",
        "48": "data\/images\/icon48.png",
        "64": "data\/images\/icon64.png",
        "128": "data\/images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/images\/icon16.png",
            "32": "data\/images\/icon32.png",
            "48": "data\/images\/icon48.png",
            "64": "data\/images\/icon64.png",
            "128": "data\/images\/icon128.png"
        },
        "default_title": "Kioku",
        "default_popup": "html\/action-popup.html"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "lib\/kuromoji.js",
            "lib\/japanese-util.js",
            "js\/wordstatusdb.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "lib\/japanese-util.js",
                "js\/util.js",
                "js\/wordmgr.js",
                "js\/submgr.js",
                "js\/subbar.js",
                "js\/subsidebar.js",
                "js\/msgbox.js",
                "js\/videomgr.js",
                "js\/netflix-content.js"
            ],
            "css": [
                "css\/wordmgr.css",
                "css\/subbar.css",
                "css\/subsidebar.css",
                "css\/msgbox.css",
                "css\/netflix.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "lib\/japanese-util.js",
                "js\/util.js",
                "js\/wordmgr.js",
                "js\/content.js"
            ],
            "css": [
                "css\/wordmgr.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/netflix-page.js"
    ],
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": true
    },
    "commands": {
        "tokenize-selection": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "Analyze Selected Text"
        }
    },
    "permissions": [
        "storage",
        "contextMenus",
        "downloads",
        ""
    ]
}