Wikipedia Link Expander

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

Wikipedia Link Expander là gì?

Wikipedia Link Expander là một tiện ích mở rộng Chrome được phát triển bởi jacloar, và tính năng chính của nó là "Changes the title text for wikipedia links to be the first paragraph of that page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wikipedia Link Expander

Tải xuống các tệp mở rộng Wikipedia Link Expander dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wikipedia Link Expander Wikipedia Link Expander
ID olcpeoibndddjeocibmiabmohnedcdif
URL Chính Thức https://chrome.google.com/webstore/detail/wikipedia-link-expander/olcpeoibndddjeocibmiabmohnedcdif
Mô tả Changes the title text for wikipedia links to be the first paragraph of that page
Kích Thước Tệp 48.91 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-02-08
Ngày Phát Hành 2015-02-08
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jacloar
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}