Wikipedia Plus

Utilities to improve the user experience of Wikipedia.org for avid users.

Wikipedia Plus란 무엇입니까?

Wikipedia Plus은(는) https://falcondai.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Utilities to improve the user experience of Wikipedia.org for avid users."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Wikipedia Plus supplements Wikipedia.org's existing web interface with some convenient behaviors I always wanted myself. 

Unlike other extensions which aggressively modify or interfere with the Wikipedia website look and feel, this extension respects the original Wikipedia design and makes minimal changes. I believe that the most empowering tools are invisible. 

Features:
* show short text snippets for Wikipedia's internal entries when hover
* turn section titles into in-page links for easier bookmarking and sharing particular sections
* enlarge images when hover
  * zoom level is adjustable
  * adjusted enlarged image placement for right-to-left language pages

This is an open-source software. Check out the source at: https://github.com/falcondai/chrome-ext-wikipedia

Privacy: This extension does NOT record or send your browsing activities to any remote servers. Your browsing activities at wikipedia.org is not accessible by any third party including me. The permission to "access your data on *.wikipedia.org" is only used to insert the necessary UI-modifying scripts.

Disclaimer: Wikipedia and its associated marks are official trademarks of the Wikimedia Foundation in the United States and other countries. These marks are being used under license by the Wikimedia Foundation. Wikipedia Plus Chrome Extension is not endorsed by or affiliated with the Wikimedia Foundation.                    

확장 프로그램 기본 정보

이름 Wikipedia Plus Wikipedia Plus
ID fkfdafnifmdahipdpcbpefhjlceippna
공식 URL https://chromewebstore.google.com/detail/wikipedia-plus/fkfdafnifmdahipdpcbpefhjlceippna
설명 Utilities to improve the user experience of Wikipedia.org for avid users.
파일 크기 84 KB
설치 횟수 698
현재 버전 0.2.0
최근 업데이트 2013-09-24
출시 날짜 2013-09-23
평점 4.06/5 총 16 개의 평점
개발자 https://falcondai.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/falcondai/chrome-ext-wikipedia
도움말 페이지 URL https://github.com/falcondai/chrome-ext-wikipedia/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Plus",
    "version": "0.2.0",
    "manifest_version": 2,
    "author": "Falcon Dai",
    "description": "Utilities to improve the user experience of Wikipedia.org for avid users.",
    "icons": {
        "128": "\/assets\/image\/icon.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "\/assets\/image\/icon.png"
    ]
}