Wikipedia Inline References

Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.

Wikipedia Inline References란 무엇입니까?

Wikipedia Inline References은(는) Wikipedia Inline References에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned."입니다.

확장 프로그램 스크린샷

screenshot

Wikipedia Inline References 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Wikipedia Inline References inserts the reference information that normally appears at the bottom of the page directly next to where it was mentioned, in the flow of the text. This allows the reader to get an idea of what the source of the information they are reading is, without jumping around the page. It also allows the reader to avoid using the tool-tip feature Wikipedia already has, which is useful when reading when not near the mouse, or simply to save the step of hovering the mouse over the reference.

By keeping the references in context, this extension allows the reader to verify wiki sources, without losing their spot.

Current features:
- Highlight the reference info with any color you'd like (or leave it white to have none).
-Change the color of the reference text.
-Change the color of reference links.

Planned features:
-Select which information from the citation that you'd like to be inserted (just the link, the title, the author... etc).                    

확장 프로그램 기본 정보

이름 Wikipedia Inline References Wikipedia Inline References
ID apelegaobhcbjnhfhhhjielpgajjdlij
공식 URL https://chrome.google.com/webstore/detail/wikipedia-inline-referenc/apelegaobhcbjnhfhhhjielpgajjdlij
설명 Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.
파일 크기 8.86 KB
설치 횟수 70
현재 버전 0.1
최근 업데이트 2014-09-30
출시 날짜 2014-09-30
평점 3.00/5 총 1 개의 평점
개발자 Wikipedia Inline References
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wikipedia Inline References",
    "version": "0.1",
    "author": "Wikipedia Inline References",
    "description": "Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "logo16x16.png",
        "48": "logo48x48.png",
        "128": "logo128x128.png"
    },
    "web_accessible_resources": [
        "background.html"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "css": [],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*\/",
        "storage"
    ]
}