AxTongue

Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com.

AxTongue क्या है?

AxTongue https://axtongue.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com."।

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

screenshot

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

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

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

                        AxTongue is a website/app that hosts user-submitted "cross captions" for YouTube videos. This extension allows you to see those captions on the YouTube website.

Cross captions are designed to let you understand a language you don't speak in real time. You can immerse yourself right away, without knowing a single word.

The AxTongue website/app has many features that are not available with this extension, including a system for generating cross captions with AI, and a sophisticated flashcard-like system that integrates into videos. And there are many other features. However, the basic concept everything else revolves around, viewing cross captions, is fully available in this extension.                    

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

नाम AxTongue AxTongue
ID ilbfbiamkpljhkhnhjiikeikefogpffh
आधिकारिक URL https://chromewebstore.google.com/detail/axtongue/ilbfbiamkpljhkhnhjiikeikefogpffh
विवरण Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com.
फ़ाइल का आकार 25.71 KB
स्थापना संख्या 70
वर्तमान संस्करण 0.0.0.5
अंतिम अपडेट 2023-08-09
प्रकाशन तिथि 2023-07-23
डेवलपर https://axtongue.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.axtongue.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AxTongue",
    "version": "0.0.0.5",
    "description": "Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "axStyles.css"
            ],
            "js": [
                "axScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "https:\/\/www.axtongue.com\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.axtongue.com\/*"
    ],
    "homepage_url": "https:\/\/www.axtongue.com",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}