EasyWiki

Simplifying Wikipedia research. No more multiple tabs.

什么是EasyWiki?

EasyWiki是由DoSelect开发的Chrome扩展程序,该扩展的主要功能是“Simplifying Wikipedia research. No more multiple tabs.”。

扩展截图

screenshot
screenshot

下载EasyWiki扩展crx文件

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

扩展使用说明

                        EasyWiki is a Chrome extension that simplifies your journey down the Wikipedia rabbit-hole! No more 57 tabs! We love popovers!

## How does it work?

* Install the extension.

* Turn EasyWiki `ON` by clicking the EasyWiki button on the toolbar.

* Now, whenever you hover on a [Wikipedia](http://en.wikipedia.org) link on any website, a popover will show up with the description of that article, so that you do not have to open a new tab every time.

## Will it create a mess of popovers?

Most certainly, it wouldn't. It waits for at least 700 milliseconds before bringing up the popover.

- - -

Crafted with love by @sanketsaurav and @avckp.                    

扩展基本信息

名称 EasyWiki EasyWiki
ID faihnkmjkajkjcbaginjgdmamhfmhado
官方URL https://chrome.google.com/webstore/detail/easywiki/faihnkmjkajkjcbaginjgdmamhfmhado
简介 Simplifying Wikipedia research. No more multiple tabs.
文件大小 50.31 KB
安装次数 68
当前版本 0.2
更新时间 2015-06-27
上架时间 2015-06-27
评分 4.83/5 共12次评分
开发者 DoSelect
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EasyWiki",
    "version": "0.2",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "Simplifying Wikipedia research. No more multiple tabs.",
    "homepage_url": "https:\/\/github.com\/sanketsaurav\/easywiki",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon48.png",
            "38": "icons\/icon48.png"
        },
        "default_title": "Toggle EasyWiki"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*.wikipedia.org\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "js\/tooltip.js",
                "js\/popover.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}