Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

O que é Pikmin Wikia Killer?

Pikmin Wikia Killer é uma extensão do Chrome desenvolvida por Creative Sushi, e sua principal característica é "Redirects the Pikmin wikia links to Pikipedia.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Pikmin Wikia Killer

Baixe arquivos de extensão Pikmin Wikia Killer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
URL Oficial https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
Descrição Redirects the Pikmin wikia links to Pikipedia.
Tamanho do Arquivo 31.17 KB
Contagem de Instalações 115
Versão Atual 0.2
Última Atualização 2016-06-18
Data de Publicação 2016-06-18
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Creative Sushi
Tipo de Pagamento free
Site da Extensão http://pikminwiki.com
URL da Página de Ajuda http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
Idiomas Suportados 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"
            ]
        }
    ]
}