Pikmin Wikia Killer
Redirects the Pikmin wikia links to Pikipedia.
Pikmin Wikia Killer là gì?
Pikmin Wikia Killer là một tiện ích mở rộng Chrome được phát triển bởi Creative Sushi, và tính năng chính của nó là "Redirects the Pikmin wikia links to Pikipedia.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pikmin Wikia Killer
Tải xuống các tệp mở rộng Pikmin Wikia Killer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gppeenbpnelhacglfaiclhbiidjiamgc |
URL Chính Thức | https://chromewebstore.google.com/detail/pikmin-wikia-killer/gppeenbpnelhacglfaiclhbiidjiamgc |
Mô tả | Redirects the Pikmin wikia links to Pikipedia. |
Kích Thước Tệp | 31.17 KB |
Số Lần Cài Đặt | 115 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2016-06-18 |
Ngày Phát Hành | 2016-06-18 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Creative Sushi |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://pikminwiki.com |
URL Trang Trợ Giúp | http://pikipedia.freeforums.net/thread/270/pikmin-killer-google-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |