Wiki Preview

Preview Wikipedia links for easier reading.

Co je Wiki Preview?

Wiki Preview je rozšíření Chrome vyvinuté https://ictech.fr, a jeho hlavní funkcí je „Preview Wikipedia links for easier reading.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Wiki Preview

Stáhněte si soubory rozšíření Wiki Preview ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        When you're reading a Wikipedia articles, you often just want to have a glimpse of what other articles are about, without getting distracted from your main article.

This extension allows you to view a summary of any link on Wikipedia (first paragraph). This way you can focus on your main article you are reading, and still have a glimpse of what the other articles are about.                    

Základní Informace o Rozšíření

Název Wiki Preview Wiki Preview
ID keodbghcggpcaaihokbhmeehadnkemgc
Oficiální URL https://chromewebstore.google.com/detail/wiki-preview/keodbghcggpcaaihokbhmeehadnkemgc
Popis Preview Wikipedia links for easier reading.
Velikost souboru 138 KB
Počet instalací 148
Aktuální Verze 1.0
Poslední Aktualizace 2014-05-30
Datum Vydání 2014-05-29
Hodnocení 5.00/5 Celkem 8 Hodnocení
Vývojář https://ictech.fr
Typ Platby free
Webové stránky Rozšíření http://ictech.fr/wiki/
URL Stránky Nápovědy http://ictech.fr/wiki/
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wiki Preview",
    "version": "1.0",
    "homepage_url": "http:\/\/ictech.fr\/wiki\/",
    "description": "Preview Wikipedia links for easier reading.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "*.map"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.wikipedia.org\/*"
            ],
            "css": [
                "overlay.css"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "iframeResizer.min.js",
                "wikipreview_ch.js"
            ]
        }
    ]
}