Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

Cos'è Pikmin Wikia Killer?

Pikmin Wikia Killer è un'estensione di Chrome sviluppata da Creative Sushi, e la sua funzione principale è "Redirects the Pikmin wikia links to Pikipedia.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Pikmin Wikia Killer

Scarica i file di estensione Pikmin Wikia Killer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
URL Ufficiale https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
Descrizione Redirects the Pikmin wikia links to Pikipedia.
Dimensione del File 31.17 KB
Conteggio Installazioni 115
Versione Corrente 0.2
Ultimo Aggiornamento 2016-06-18
Data di Pubblicazione 2016-06-18
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Creative Sushi
Tipo di Pagamento free
Sito Web dell'Estensione http://pikminwiki.com
URL della Pagina di Aiuto http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
Lingue Supportate 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"
            ]
        }
    ]
}