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文件

下載SubAny Web擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}