SubAny Web

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

O que é SubAny Web?

SubAny Web é uma extensão do Chrome desenvolvida por prosset, e sua principal característica é "Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SubAny Web

Baixe arquivos de extensão SubAny Web no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome SubAny Web SubAny Web
ID japfodgakhloekokcjbapdodojbhnnkc
URL Oficial https://chromewebstore.google.com/detail/subany-web/japfodgakhloekokcjbapdodojbhnnkc
Descrição Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.
Tamanho do Arquivo 12.79 MB
Contagem de Instalações 367
Versão Atual 0.1.1
Última Atualização 2020-04-07
Data de Publicação 2020-04-06
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor prosset
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/PaulRosset/subtitles-anywhere-web
URL da Página de Ajuda https://github.com/PaulRosset/subtitles-anywhere-web/issues
Idiomas Suportados 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"
            ]
        }
    ]
}