Pokedex Linker
Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
什么是Pokedex Linker?
Pokedex Linker是由https://thepoke.de开发的Chrome扩展程序,该扩展的主要功能是“Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.”。
扩展截图
下载Pokedex Linker扩展crx文件
下载Pokedex Linker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Every good trainer needs the latest information about whatever Pokemon may cross their path. If you happen to stumble across one while browsing the internet, this extension will convert any mentioned name to link for that pokemon on thepoke.de/x/. Hovering over that link will provide a quick peek of that pokemon, it's national dex number, and it's type(s).
扩展基本信息
名称 | |
ID | cafmpknaihmoehhoehfcfpnjdmcpffee |
官方URL | https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee |
简介 | Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link. |
文件大小 | 168 KB |
安装次数 | 77 |
当前版本 | 3.6 |
更新时间 | 2020-06-03 |
上架时间 | 2020-06-02 |
评分 | 5.00/5 共3次评分 |
开发者 | https://thepoke.de |
付费类型 | free |
扩展官网 | https://thepoke.de/x/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pokedex Linker", "description": "Converts pokemon names to links that open up ThePoke.de\/x\/ with easy access info when you hover over the link.", "version": "3.6", "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png", "512": "icon_512.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "popper.min.js", "tooltip.min.js", "db.js", "content.js" ] } ] } |