Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

Co to jest Pikmin Wikia Killer?

Pikmin Wikia Killer to rozszerzenie Chrome opracowane przez Creative Sushi, a jego główną funkcją jest „Redirects the Pikmin wikia links to Pikipedia.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Pikmin Wikia Killer

Pobierz pliki rozszerzeń Pikmin Wikia Killer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
Oficjalny URL https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
Opis Redirects the Pikmin wikia links to Pikipedia.
Rozmiar pliku 31.17 KB
Liczba instalacji 115
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2016-06-18
Data Publikacji 2016-06-18
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Creative Sushi
Typ Płatności free
Strona Rozszerzenia http://pikminwiki.com
Adres URL Strony Pomocy http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
Obsługiwane Języki 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"
            ]
        }
    ]
}