Wikipedia Link Expander

Changes the title text for wikipedia links to be the first paragraph of that page

Wikipedia Link Expanderとは何ですか?

Wikipedia Link Expanderはjacloarによって開発されたChromeの拡張機能で、その主な機能は「Changes the title text for wikipedia links to be the first paragraph of that page」です。

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

screenshot

Wikipedia Link Expander拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Wikipedia Link Expander is for people who enjoy browsing articles on Wikipedia and exploring all the links. This extension allows you to hover over a link in Wikipedia and view the first paragraph of information in that article so you can read without clicking away. It isn't very good, it is incredibly buggy, and there are probably better alternatives out there, but we wanted to show off our version!                    

拡張機能の基本情報

名前 Wikipedia Link Expander Wikipedia Link Expander
ID olcpeoibndddjeocibmiabmohnedcdif
公式URL https://chrome.google.com/webstore/detail/wikipedia-link-expander/olcpeoibndddjeocibmiabmohnedcdif
説明 Changes the title text for wikipedia links to be the first paragraph of that page
ファイルサイズ 48.91 KB
インストール数 45
現在のバージョン 1.0.1
最終更新日 2015-02-08
公開日 2015-02-08
評価 5.00/5 合計 4 レビュー
開発者 jacloar
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wikipedia Link Expander",
    "description": "Changes the title text for wikipedia links to be the first paragraph of that page",
    "version": "1.0.1",
    "icons": {
        "16": "images\/wikipediaicon16.png",
        "48": "images\/wikipediaicon48.png",
        "128": "images\/wikipediaicon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "contentSettings",
        "http:\/\/*.wikipedia.org\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "wikipediaHover.js"
            ]
        }
    ]
}