Click dictionary

Double click on words to see their definition

Vad är Click dictionary?

Click dictionary är en Chrome-tillägg utvecklad av newdev, och dess huvudfunktion är "Double click on words to see their definition".

Tilläggsskärmbilder

screenshot

Ladda ner Click dictionary-förlängningens CRX-fil

Ladda ner Click dictionary-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

                        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.                    

Grundläggande Information om Tillägg

Namn Click dictionary Click dictionary
ID edeopnindailmgjakdinjklkakmhlmpg
Officiell webbadress https://chromewebstore.google.com/detail/click-dictionary/edeopnindailmgjakdinjklkakmhlmpg
Beskrivning Double click on words to see their definition
Filstorlek 33.22 KB
Antal Installationer 1,570
Aktuell Version 1.4.3
Senast Uppdaterad 2023-01-31
Publiceringsdatum 2017-10-31
Betyg 4.09/5 Totalt 11 Betyg
Utvecklare newdev
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}