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."입니다.
확장 프로그램 스크린샷
Pikmin Wikia Killer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | gppeenbpnelhacglfaiclhbiidjiamgc |
공식 URL | 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" ] } ] } |