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文件
下载Everything to Pokémon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Changes every word to the name of a 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"
}
]
} | |