PokeCard

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

PokeCard क्या है?

PokeCard VitCon द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically verify and redeem Pokemon Trading Card Game (TCG) codes."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PokeCard एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}