SubAny Web

Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.

SubAny Web란 무엇입니까?

SubAny Web은(는) prosset에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The streaming world has never been so exciting. Many companies are investing a large number of resources to deliver video on the web. This is changing how we get entertained.

However, depending on the country you live, you may face some limitations of right about specific video content that can be delivered. This also concerns subtitles.

To answer these problems, you can now provide your subtitles.
Thus, for example, if you stay in a country where the streaming provider can't have access to the captions you wish, you can use that extension. 

This is also useful for people that don't like subtitles that the services are providing and so providing your captions.                    

확장 프로그램 기본 정보

이름 SubAny Web SubAny Web
ID japfodgakhloekokcjbapdodojbhnnkc
공식 URL https://chromewebstore.google.com/detail/subany-web/japfodgakhloekokcjbapdodojbhnnkc
설명 Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.
파일 크기 12.79 MB
설치 횟수 367
현재 버전 0.1.1
최근 업데이트 2020-04-07
출시 날짜 2020-04-06
평점 1.00/5 총 1 개의 평점
개발자 prosset
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/PaulRosset/subtitles-anywhere-web
도움말 페이지 URL https://github.com/PaulRosset/subtitles-anywhere-web/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SubAny Web",
    "version": "0.1.1",
    "description": "Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.",
    "homepage_url": "https:\/\/github.com\/PaulRosset\/subtitles-anywhere-web",
    "manifest_version": 2,
    "minimum_chrome_version": "68",
    "web_accessible_resources": [
        "medias\/play.svg",
        "medias\/stop.svg"
    ],
    "browser_action": {
        "default_icon": "medias\/icon.png",
        "default_title": "SubAny"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "medias\/icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}