DuelingBook Translator

Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.

DuelingBook Translator क्या है?

DuelingBook Translator saggiclowndev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to translate the different yu-gi-oh cards on the duelingbook.com site.

For the moment the application the extension manages 4 languages: French, Portuguese, Italian, German.

Later I will add more features such as better text organization and a new search bar to find a card in your own language.                    

एक्सटेंशन की मूल जानकारी

नाम DuelingBook Translator DuelingBook Translator
ID lneofkmibckbjnmnphcfmddhoblknbii
आधिकारिक URL https://chromewebstore.google.com/detail/duelingbook-translator/lneofkmibckbjnmnphcfmddhoblknbii
विवरण Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.
फ़ाइल का आकार 9.6 MB
स्थापना संख्या 29
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2023-06-06
प्रकाशन तिथि 2022-12-28
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर saggiclowndev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DuelingBook Translator",
    "version": "1.1.2",
    "description": "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.",
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.duelingbook.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "https:\/\/www.duelingbook.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bdd\/db_de.json",
                "bdd\/db_en.json",
                "bdd\/db_fr.json",
                "bdd\/db_pt.json",
                "bdd\/db_it.json"
            ],
            "matches": [
                "https:\/\/www.duelingbook.com\/*"
            ]
        }
    ],
    "icons": {
        "16": ".\/icon\/icon16.png",
        "48": ".\/icon\/icon48.png",
        "128": ".\/icon\/icon128.png"
    },
    "manifest_version": 3
}