Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

What is Pikmin Wikia Killer?

Pikmin Wikia Killer is a Chrome extension developed by Creative Sushi, and its main feature is "Redirects the Pikmin wikia links to Pikipedia.".

Extension Screenshots

screenshot
screenshot

Download Pikmin Wikia Killer Extension CRX File

Download Pikmin Wikia Killer 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

                        An extension with the purpose of redirecting any Pikmin Wikia page (pikmin.wikia.com) to the respective Pikipedia page (pikminwiki.com). It is page specific, so if you were to, for example go to the "candypop bud" page on the wikia, you will be brought to the "candypop bud" page on Pikipedia. It also contains handy links to Pikipedia and the Pikipedia Forums.                    

Extension Basic Information

Name Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
Official URL https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
Description Redirects the Pikmin wikia links to Pikipedia.
File Size 31.17 KB
Installation Count 115
Current Version 0.2
Last Updated 2016-06-18
Publish Date 2016-06-18
Rating 5.00/5 Total 3 Ratings
Developer Creative Sushi
Payment Type free
Extension Website http://pikminwiki.com
Help Page URL http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pikmin Wikia Killer",
    "author": "Creative Sushi",
    "version": "0.2",
    "description": "Redirects the Pikmin wikia links to Pikipedia.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_title": "Pikipedia",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "page": "bg.html"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}