Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

Qu'est-ce que Pikmin Wikia Killer ?

Pikmin Wikia Killer est une extension Chrome développée par Creative Sushi, et sa fonction principale est "Redirects the Pikmin wikia links to Pikipedia.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Pikmin Wikia Killer

Téléchargez les fichiers d'extension Pikmin Wikia Killer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
URL Officiel https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
Description Redirects the Pikmin wikia links to Pikipedia.
Taille du Fichier 31.17 KB
Nombre d'Installations 115
Version Actuelle 0.2
Dernière Mise à Jour 2016-06-18
Date de Publication 2016-06-18
Évaluation 5.00/5 Total 3 Évaluations
Développeur Creative Sushi
Type de Paiement free
Site Web de l'Extension http://pikminwiki.com
URL de la Page d'Aide http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
Langues Prises en Charge 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"
            ]
        }
    ]
}