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…

Vad är Define?

Define är en Chrome-tillägg utvecklad av Abhinav Mehta, och dess huvudfunktion är "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…".

Tilläggsskärmbilder

screenshot

Ladda ner Define-förlängningens CRX-fil

Ladda ner Define-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Define Define
ID ghekgieimigknomennplpoiomnldfbaa
Officiell webbadress https://chromewebstore.google.com/detail/define/ghekgieimigknomennplpoiomnldfbaa
Beskrivning 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…
Filstorlek 16.1 KB
Antal Installationer 35
Aktuell Version 0.0.1
Senast Uppdaterad 2020-09-28
Publiceringsdatum 2020-09-28
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Abhinav Mehta
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}