Everything to Pokémon
Replaces every word with a Pokémon
Everything to Pokémon란 무엇입니까?
Everything to Pokémon은(는) lukey_q에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces every word with a Pokémon"입니다.
확장 프로그램 스크린샷
Everything to Pokémon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Changes every word to the name of a Pokémon.
확장 프로그램 기본 정보
이름 | Everything to Pokémon |
ID | badgmddlemdcnjffifhmamanjibggghe |
공식 URL | https://chromewebstore.google.com/detail/everything-to-pok%C3%A9mon/badgmddlemdcnjffifhmamanjibggghe |
설명 | Replaces every word with a Pokémon |
파일 크기 | 67.91 KB |
설치 횟수 | 138 |
현재 버전 | 0.1 |
최근 업데이트 | 2014-12-18 |
출시 날짜 | 2014-12-17 |
평점 | 3.85/5 총 13 개의 평점 |
개발자 | lukey_q |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/lilkraftwerk/everything-to-pokemon |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Everything to Pok\u00e9mon", "version": "0.1", "description": "Replaces every word with a Pok\u00e9mon", "browser_action": { "default_icon": { "19": "img\/bulbasmall.png", "38": "img\/bulbabig.png" }, "default_title": "Everything To Pok\u00e9mon" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "events.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |