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文件

下载Wikipedia Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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