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…

Was ist Define?

Define ist eine Chrome-Erweiterung, die von Abhinav Mehta entwickelt wurde, und ihr Hauptmerkmal ist "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…".

Erweiterungsscreenshots

screenshot

Define-Erweiterungs-CRX-Datei herunterladen

Laden Sie Define-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Define Define
ID ghekgieimigknomennplpoiomnldfbaa
Offizielle URL https://chromewebstore.google.com/detail/define/ghekgieimigknomennplpoiomnldfbaa
Beschreibung 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…
Dateigröße 16.1 KB
Installationsanzahl 35
Aktuelle Version 0.0.1
Letztes Update 2020-09-28
Veröffentlichungsdatum 2020-09-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Abhinav Mehta
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}