AxTongue

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

Was ist AxTongue?

AxTongue ist eine Chrome-Erweiterung, die von https://axtongue.com entwickelt wurde, und ihr Hauptmerkmal ist "Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com.".

Erweiterungsscreenshots

screenshot

AxTongue-Erweiterungs-CRX-Datei herunterladen

Laden Sie AxTongue-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AxTongue AxTongue
ID ilbfbiamkpljhkhnhjiikeikefogpffh
Offizielle URL https://chromewebstore.google.com/detail/axtongue/ilbfbiamkpljhkhnhjiikeikefogpffh
Beschreibung Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com.
Dateigröße 25.71 KB
Installationsanzahl 70
Aktuelle Version 0.0.0.5
Letztes Update 2023-08-09
Veröffentlichungsdatum 2023-07-23
Entwickler https://axtongue.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.axtongue.com
Unterstützte Sprachen 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"
    }
}