PokeCard

Automatically verify and redeem Pokemon Trading Card Game (TCG) codes.

什么是PokeCard?

PokeCard是由VitCon开发的Chrome扩展程序,该扩展的主要功能是“Automatically verify and redeem Pokemon Trading Card Game (TCG) codes.”。

扩展截图

screenshot

下载PokeCard扩展crx文件

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

扩展使用说明

                        If you are playing Pokemon TCG game, you will understand the pain of scanning code cards and redeeming the codes into the game client. The task is quite boring, time consuming, and repetitive.

As a software developer, I cannot stand wasting my time doing an action that can be automated, so I created this tool to automatically mass verify and redeem codes. I bet that you will love it.

To get started, you first install this extension. Then, click on the extension icon and an popup should appear. You can now paste all your codes and verify or redeem them in bulk as your wish.                    

扩展基本信息

名称 PokeCard PokeCard
ID lockhmpfjhaabaflkpnakjmlmificdlp
官方URL https://chromewebstore.google.com/detail/pokecard/lockhmpfjhaabaflkpnakjmlmificdlp
简介 Automatically verify and redeem Pokemon Trading Card Game (TCG) codes.
文件大小 21.04 KB
安装次数 77
当前版本 1.0.2
更新时间 2022-01-15
上架时间 2022-01-08
评分 3.00/5 共2次评分
开发者 VitCon
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PokeCard",
    "description": "Automatically verify and redeem Pokemon Trading Card Game (TCG) codes.",
    "version": "1.0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeNetRequest"
    ],
    "action": {
        "default_popup": "page\/popup.html",
        "default_title": "Click to verify and redeem Pokemon TCG codes"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.pokemon.com\/us\/pokemon-trainer-club\/enter-codes"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.pokemon.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/page-context.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    }
}