Define

Define helps you to find the definition of any word on your browser without you changing the Tab. 1. Select the word you wanted the…

Co je Define?

Define je rozšíření Chrome vyvinuté Abhinav Mehta, a jeho hlavní funkcí je „Define helps you to find the definition of any word on your browser without you changing the Tab. 1. Select the word you wanted the…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Define

Stáhněte si soubory rozšíření Define ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Define helps you to find the definition of any word on your browser without you changing the Tab.
1. Select the word you wanted the Definition for.
2. Right click and select Define word or Click on the define Chrome Extension icon                    

Základní Informace o Rozšíření

Název Define Define
ID ghekgieimigknomennplpoiomnldfbaa
Oficiální URL https://chromewebstore.google.com/detail/define/ghekgieimigknomennplpoiomnldfbaa
Popis Define helps you to find the definition of any word on your browser without you changing the Tab. 1. Select the word you wanted the…
Velikost souboru 16.1 KB
Počet instalací 35
Aktuální Verze 0.0.1
Poslední Aktualizace 2020-09-28
Datum Vydání 2020-09-28
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Abhinav Mehta
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Define",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popUp\/index.html",
        "default_title": "Define"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ]
}