Wikipedia Lookup - Browser Action

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

什麼是Wikipedia Lookup - Browser Action?

Wikipedia Lookup - Browser Action是由Damien Brunet開發的Chrome擴展程式,該擴展的主要功能是“Select a word or two, click the icon in the toolbar, learn something new.”。

擴展截圖

screenshot

下載Wikipedia Lookup - Browser Action擴展crx文件

下載Wikipedia Lookup - Browser Action擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Wikipedia Lookup - Browser Action Wikipedia Lookup - Browser Action
ID oikmhlphjkiohmgkdldifggnamddhoea
官方網址 https://chromewebstore.google.com/detail/wikipedia-lookup-browser/oikmhlphjkiohmgkdldifggnamddhoea
簡介 Select a word or two, click the icon in the toolbar, learn something new.
檔案大小 31.04 KB
安裝次數 938
目前版本 1.3.9
更新時間 2021-06-06
上架時間 2020-07-02
評分 4.72/5 共 25 次評分
開發者 Damien Brunet
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}