WordUp

Word Up Extension

WordUpคืออะไร?

WordUp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย learningmadelazy และคุณลักษณะหลักของมันคือ "Word Up Extension"

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

screenshot

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

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

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

                        a tool that increases a users vocabulary while simultaneously tracking metrics that relate to how frequent an individual is aware of terms they have not previously encountered                    

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

ชื่อ WordUp WordUp
ID ghjjpmcbdidjlmghhfmphbjllkhmaaof
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wordup/ghjjpmcbdidjlmghhfmphbjllkhmaaof
คำอธิบาย Word Up Extension
ขนาดไฟล์ 247 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2021-02-03
วันที่เผยแพร่ 2020-09-22
ผู้พัฒนา learningmadelazy
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WordUp",
    "description": "Word Up Extension",
    "version": "1.3",
    "manifest_version": 2,
    "omnibox": {
        "keyword": "nt"
    },
    "icons": {
        "16": "search16.png",
        "32": "search32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": "ExtensionIcon.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens hello.html"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Html\/Toolbar.js",
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "Html\/Toolbar.html",
        "Html\/Toolbar.css",
        "Html\/ItemTemplate\/WordListItemTemplate.html",
        "Html\/Graph.html",
        "Html\/Graph.js",
        "Popup.js"
    ]
}