Adict - Instant Dictionary Lookup

This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French

Qu'est-ce que Adict - Instant Dictionary Lookup ?

Adict - Instant Dictionary Lookup est une extension Chrome développée par relte, et sa fonction principale est "This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Adict - Instant Dictionary Lookup

Téléchargez les fichiers d'extension Adict - Instant Dictionary Lookup au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension allows you to easily look up a phrase in English, Polish, German, Spanish or French holding ALT and double clicking or with a trigger button. You can choose one of the four available dictionaries: dictionary.com (EN), merriam-webster.com (EN), diki.pl (EN/PL) and and bab.la (EN, PL, DE, ES, FR).

IMPORTANT: The extension will not work in tabs that were open prior to installation, such tabs must be refreshed. Besides, note that all extensions are disabled on Chrome Web Store pages (including this page).                    

Informations de Base sur l'Extension

Nom Adict - Instant Dictionary Lookup Adict - Instant Dictionary Lookup
ID npehaobgogknjhoglakcpbfbhfdgennf
URL Officiel https://chromewebstore.google.com/detail/adict-instant-dictionary/npehaobgogknjhoglakcpbfbhfdgennf
Description This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French
Taille du Fichier 48.35 KB
Nombre d'Installations 288
Version Actuelle 0.4.0
Dernière Mise à Jour 2019-07-02
Date de Publication 2019-07-02
Évaluation 3.67/5 Total 3 Évaluations
Développeur relte
Email [email protected]
Type de Paiement free
Langues Prises en Charge en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "version": "0.4.0",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "icons\/main16.png",
        "32": "icons\/main32.png",
        "48": "icons\/main48.png",
        "96": "icons\/main96.png",
        "128": "icons\/main128.png"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "storage.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "storage.js",
                "popup\/popup.js"
            ],
            "css": [
                "popup\/popup.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.dictionary.com\/*",
                "https:\/\/www.merriam-webster.com\/*",
                "https:\/\/www.diki.pl\/*",
                "https:\/\/*.bab.la\/*"
            ],
            "js": [
                "dictionary.js"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.dictionary.com\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/dictionary_com.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.merriam-webster.com\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/merriam_webster.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.diki.pl\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/diki.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/*.bab.la\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/bab_la.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/main16.png",
            "32": "icons\/main32.png",
            "48": "icons\/main48.png",
            "96": "icons\/main96.png",
            "128": "icons\/main128.png"
        },
        "default_title": "Adict",
        "default_popup": "menu\/menu.html"
    }
}