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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}