WordUp

Word Up Extension

WordUp क्या है?

WordUp learningmadelazy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Word Up Extension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WordUp एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}