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…

Hvad er Define?

Define er en Chrome-udvidelse udviklet af Abhinav Mehta, og dens hovedfunktion er "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…".

Udvidelsesskærmbilleder

screenshot

Download Define-udvidelses-CRX-fil

Download Define-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Define Define
ID ghekgieimigknomennplpoiomnldfbaa
Officiel URL https://chromewebstore.google.com/detail/define/ghekgieimigknomennplpoiomnldfbaa
Beskrivelse 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…
Filstørrelse 16.1 KB
Antal Installationer 35
Nuværende Version 0.0.1
Senest Opdateret 2020-09-28
Udgivelsesdato 2020-09-28
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Abhinav Mehta
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}