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 to jest Define?

Define to rozszerzenie Chrome opracowane przez Abhinav Mehta, a jego główną funkcją jest „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…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Define

Pobierz pliki rozszerzeń Define w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Define Define
ID ghekgieimigknomennplpoiomnldfbaa
Oficjalny URL https://chromewebstore.google.com/detail/define/ghekgieimigknomennplpoiomnldfbaa
Opis 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…
Rozmiar pliku 16.1 KB
Liczba instalacji 35
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2020-09-28
Data Publikacji 2020-09-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Abhinav Mehta
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}