Wikipedia Highlight Lookup Plugin

Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.

Wikipedia Highlight Lookup Pluginとは何ですか?

Wikipedia Highlight Lookup PluginはTim Hansenによって開発されたChromeの拡張機能で、その主な機能は「Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Wikipedia Highlight Lookup Plugin拡張機能のCRXファイルをダウンロード

Wikipedia Highlight Lookup Plugin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A simple open-source chrome extension that allows you to look up terms on wikipedia by highlighting text on any page and then hitting Ctrl+I (Command+I on apple).

Icons made by SimpleIcon from www.flaticon.com is licensed by CC 3.0 BY.                    

拡張機能の基本情報

名前 Wikipedia Highlight Lookup Plugin Wikipedia Highlight Lookup Plugin
ID lccilnojalgdoafhhjhiabfcmpahahec
公式URL https://chromewebstore.google.com/detail/wikipedia-highlight-looku/lccilnojalgdoafhhjhiabfcmpahahec
説明 Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.
ファイルサイズ 286 KB
インストール数 58
現在のバージョン 0.0.3
最終更新日 2017-01-17
公開日 2017-01-16
開発者 Tim Hansen
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Highlight Lookup Plugin",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Look up highlighted text on wikipedia.  Just highlight the word or phrase you want to look up and press Ctrl+I.",
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/bg\/content.js"
            ]
        }
    ],
    "commands": {
        "wiki-lookup": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "Toggle wikipedia lookup"
        }
    },
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/upload.wikimedia.org\/*"
    ]
}