WordUp

Word Up Extension

WordUp란 무엇입니까?

WordUp은(는) learningmadelazy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Word Up Extension"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

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