Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

Wat is Pikmin Wikia Killer?

Pikmin Wikia Killer is een Chrome-extensie ontwikkeld door Creative Sushi, en de belangrijkste functie is "Redirects the Pikmin wikia links to Pikipedia.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Pikmin Wikia Killer

Download Pikmin Wikia Killer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
Officiële URL https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
Beschrijving Redirects the Pikmin wikia links to Pikipedia.
Bestandsgrootte 31.17 KB
Aantal Installaties 115
Huidige Versie 0.2
Laatst Bijgewerkt 2016-06-18
Publicatiedatum 2016-06-18
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Creative Sushi
Betalingswijze free
Extensiewebsite http://pikminwiki.com
Help Pagina-URL http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
Ondersteunde Talen 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"
            ]
        }
    ]
}