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."입니다.

확장 프로그램 스크린샷

screenshot

AxTongue 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}