AxTongue
Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com.
什么是AxTongue?
AxTongue是由https://axtongue.com开发的Chrome扩展程序,该扩展的主要功能是“Shows dynamic bilingual cross captions for videos on youtube.com if they are available on axtongue.com.”。
扩展截图
下载AxTongue扩展crx文件
下载AxTongue扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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.                     扩展基本信息
| 名称 |   |  
| 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"
    }
}  |  |