Wikipedia Lookup - Browser Action

Select a word or two, click the icon in the toolbar, learn something new.

Qu'est-ce que Wikipedia Lookup - Browser Action ?

Wikipedia Lookup - Browser Action est une extension Chrome développée par Damien Brunet, et sa fonction principale est "Select a word or two, click the icon in the toolbar, learn something new.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Wikipedia Lookup - Browser Action

Téléchargez les fichiers d'extension Wikipedia Lookup - Browser Action 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

                        WARNING: Wikipedia Lookup doesn't work on pages opened before the installation.

Select the word(s) you want to look up on Wikipedia, and click the icon in the toolbar.

By default, Wikipedia Lookup auto-detects the language of the page and loads the corresponding version of Wikipedia. You can turn this feature off in the options.

Inside the popup click the green corner to open the full version of Wikipedia in a new tab. It will load the first url you visited. It's a bug but I can't easily fix it.

To access the options, right-click the icon.

You can assign a keyboard shortcut to Wikipedia Lookup: chrome://extensions/shortcuts

Open-source: https://github.com/djrekca/Wikipedia-Lookup---Browser-Action                    

Informations de Base sur l'Extension

Nom Wikipedia Lookup - Browser Action Wikipedia Lookup - Browser Action
ID oikmhlphjkiohmgkdldifggnamddhoea
URL Officiel https://chromewebstore.google.com/detail/wikipedia-lookup-browser/oikmhlphjkiohmgkdldifggnamddhoea
Description Select a word or two, click the icon in the toolbar, learn something new.
Taille du Fichier 31.04 KB
Nombre d'Installations 938
Version Actuelle 1.3.9
Dernière Mise à Jour 2021-06-06
Date de Publication 2020-07-02
Évaluation 4.72/5 Total 25 Évaluations
Développeur Damien Brunet
Email [email protected]
Type de Paiement free
Langues Prises en Charge en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.3.9",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "19": "19.png",
            "38": "38.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "notifications",
        "storage"
    ],
    "minimum_chrome_version": "49",
    "manifest_version": 2
}