Pikmin Wikia Killer

Redirects the Pikmin wikia links to Pikipedia.

什麼是Pikmin Wikia Killer?

Pikmin Wikia Killer是由Creative Sushi開發的Chrome擴展程式,該擴展的主要功能是“Redirects the Pikmin wikia links to Pikipedia.”。

擴展截圖

screenshot
screenshot

下載Pikmin Wikia Killer擴展crx文件

下載Pikmin Wikia Killer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Pikmin Wikia Killer Pikmin Wikia Killer
ID gppeenbpnelhacglfaiclhbiidjiamgc
官方網址 https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc
簡介 Redirects the Pikmin wikia links to Pikipedia.
檔案大小 31.17 KB
安裝次數 115
目前版本 0.2
更新時間 2016-06-18
上架時間 2016-06-18
評分 5.00/5 共 3 次評分
開發者 Creative Sushi
付費類型 free
擴展官網 http://pikminwiki.com
說明頁面URL http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension
支援的語言 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"
            ]
        }
    ]
}