Quick Define

Shows popup definition of selected term

Apa itu Quick Define?

Quick Define adalah ekstensi Chrome yang dikembangkan oleh Anton Samoylov, dan fitur utamanya adalah "Shows popup definition of selected term".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Quick Define

Unduh file ekstensi Quick Define dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        The wisdom of humankind two clicks away! Select any text in Chrome to receive instant definition and answers; no need to copy and paste! Also you won't lose your context, as the definition is showed on the same page.                    

Informasi Dasar Ekstensi

Nama Quick Define Quick Define
ID dklgknckeahgflaffkncodfpjcignmin
URL Resmi https://chrome.google.com/webstore/detail/quick-define/dklgknckeahgflaffkncodfpjcignmin
Deskripsi Shows popup definition of selected term
Ukuran File 15.18 KB
Jumlah Instalasi 45
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2015-01-12
Tanggal Publikasi 2015-01-12
Penilaian 1.00/5 Total 1 Penilaian
Pengembang Anton Samoylov
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Define",
    "description": "Shows popup definition of selected term",
    "version": "0.0.2",
    "permissions": [
        "contextMenus",
        "activeTab",
        "https:\/\/www.googleapis.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "page.js",
                "popup.js"
            ],
            "css": [
                "popup.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "QuickDefineLogoBlack128.png"
    },
    "manifest_version": 2
}