Click dictionary

Double click on words to see their definition

Apa itu Click dictionary?

Click dictionary adalah ekstensi Chrome yang dikembangkan oleh newdev, dan fitur utamanya adalah "Double click on words to see their definition".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Click dictionary

Unduh file ekstensi Click dictionary 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

                        This extension saves you time when reading text on a web page, in a foreign language, by allowing you to double click on the words you don't understand and providing you an intuitive translation popup.                    

Informasi Dasar Ekstensi

Nama Click dictionary Click dictionary
ID edeopnindailmgjakdinjklkakmhlmpg
URL Resmi https://chromewebstore.google.com/detail/click-dictionary/edeopnindailmgjakdinjklkakmhlmpg
Deskripsi Double click on words to see their definition
Ukuran File 33.22 KB
Jumlah Instalasi 1,570
Versi Saat Ini 1.4.3
Terakhir Diperbarui 2023-01-31
Tanggal Publikasi 2017-10-31
Penilaian 4.09/5 Total 11 Penilaian
Pengembang newdev
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "newDev",
    "manifest_version": 3,
    "name": "Click dictionary",
    "short_name": "Click dict.",
    "description": "Double click on words to see their definition",
    "version": "1.4.3",
    "action": {
        "default_popup": "\/src\/modules\/action\/action.html"
    },
    "icons": {
        "48": "\/src\/icon\/icon48.png",
        "128": "\/src\/icon\/icon128.png"
    },
    "background": {
        "service_worker": "\/src\/modules\/dictionary-popup\/eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.css"
            ],
            "js": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.js"
            ]
        }
    ],
    "options_page": "\/src\/modules\/options\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "\/src\/utils\/languageSettings.js",
                "\/src\/utils\/htmlUtils.js",
                "\/src\/utils\/resultTable.js",
                "\/src\/utils\/disabledUrlService.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}