wikiPreview

Display Wikipedia extracts when hovering over links.

What is wikiPreview?

wikiPreview is a Chrome extension developed by Psyclops Designs | Spookfish Labs, and its main feature is "Display Wikipedia extracts when hovering over links.".

Extension Screenshots

screenshot

Download wikiPreview Extension CRX File

Download wikiPreview extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Provides tooltip previews of Wikipedia links while browsing Wikipedia.                    

Extension Basic Information

Name wikiPreview wikiPreview
ID iioncmbmegjiadkijjkmockilogpplhg
Official URL https://chromewebstore.google.com/detail/wikipreview/iioncmbmegjiadkijjkmockilogpplhg
Description Display Wikipedia extracts when hovering over links.
File Size 184 KB
Installation Count 44
Current Version 1.2
Last Updated 2014-03-17
Publish Date 2014-03-17
Rating 5.00/5 Total 4 Ratings
Developer Psyclops Designs | Spookfish Labs
Payment Type free
Help Page URL https://github.com/jncornett/wiki-preview
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "wikiPreview",
    "version": "1.2",
    "description": "Display Wikipedia extracts when hovering over links.",
    "icons": {
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "css": [
                "css\/ui-lightness\/jquery-ui-1.10.4.custom.min.css",
                "css\/tooltip.css"
            ],
            "js": [
                "js\/jquery-min.js",
                "js\/jquery-ui-1.10.4.custom.min.js",
                "js\/inject-min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "images\/eye_open.png",
        "default_title": "wikiPreview ON"
    },
    "permissions": [
        "declarativeContent"
    ]
}