Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

Hvad er Pikmin Wikia Killer?

Pikmin Wikia Killer er en Chrome-udvidelse udviklet af Creative Sushi, og dens hovedfunktion er "Redirects the Pikmin wikia links to Pikipedia.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Pikmin Wikia Killer-udvidelses-CRX-fil

Download Pikmin Wikia Killer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
Officiel URL https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
Beskrivelse Redirects the Pikmin wikia links to Pikipedia.
Filstørrelse 31.17 KB
Antal Installationer 115
Nuværende Version 0.2
Senest Opdateret 2016-06-18
Udgivelsesdato 2016-06-18
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Creative Sushi
Betalingsmetode free
Udvidelseswebsted http://pikminwiki.com
Hjælpeside-URL http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
Understøttede Sprog 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"
            ]
        }
    ]
}