PokeFinder

Wonder what this Pokemon is? We got you.

什么是PokeFinder?

PokeFinder是由mdc405开发的Chrome扩展程序,该扩展的主要功能是“Wonder what this Pokemon is? We got you.”。

扩展截图

screenshot

下载PokeFinder扩展crx文件

下载PokeFinder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Ever read an article or post about Pokemon TCG and wonder exactly what that card did and have to then pop open another tab and search for that card? Not anymore!

With this extension you can click the PokeBall on any page that mentions Pokemon TCG cards and it'll scan through the text and add a PokeBall next to any Pokemon it finds. Hovering over that PokeBall will show you a quick preview of that card right in the article! Couldn't be simpler.

I built this for myself because I was new to the game and was annoyed having to keep searching for cards to figure out exactly what they did as I was reading about decks and strategy - so I built this so I wouldn't have to do that anymore.

Hope this helps others as well!                    

扩展基本信息

名称 PokeFinder PokeFinder
ID clfjfpgomipggphbakcdgjlnfkaeefpa
官方URL https://chromewebstore.google.com/detail/pokefinder/clfjfpgomipggphbakcdgjlnfkaeefpa
简介 Wonder what this Pokemon is? We got you.
文件大小 233 KB
安装次数 118
当前版本 1
更新时间 2018-10-14
上架时间 2018-10-13
评分 1.00/5 共2次评分
开发者 mdc405
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PokeFinder",
    "description": "Wonder what this Pokemon is? We got you.",
    "version": "1",
    "author": "Mike Cruz",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Find Pokemon!"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "data\/*.json"
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "32": "images\/icon-32x32.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png"
    }
}