TTV Looking Glass

Simply generate links to other perspectives while watching Twitch clips and vods. Adds Express Vod to Twitch nav bar.

O que é TTV Looking Glass?

TTV Looking Glass é uma extensão do Chrome desenvolvida por SpaceshipCaptain, e sua principal característica é "Simply generate links to other perspectives while watching Twitch clips and vods. Adds Express Vod to Twitch nav bar.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão TTV Looking Glass

Baixe arquivos de extensão TTV Looking Glass 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

                        This extension only works on Twitch.tv

This extension helps you sync a Twitch clip or a vod with another streamer's perspective. The input box underneath all Twitch clips/vods makes it easy to watch the same clip from multiple perspectives. Right click green bubbles for details and right click red/grey bubbles to remove them.

Also adds input box to nav bar called express vod to instantly open latest vod of inputted user.

Twitch can break this extension with a simple name change to their styling tags so I can't promise it will work 100% of the time. If you notice that's it's broken feel free to message me and I'll try to push an update quickly. I have had to do this a couple times already but I'm not always on top of it.                    

Informações Básicas da Extensão

Nome TTV Looking Glass TTV Looking Glass
ID phikemnogmdhgadokdnahneeihokkkcf
URL Oficial https://chromewebstore.google.com/detail/ttv-looking-glass/phikemnogmdhgadokdnahneeihokkkcf
Descrição Simply generate links to other perspectives while watching Twitch clips and vods. Adds Express Vod to Twitch nav bar.
Tamanho do Arquivo 14.03 KB
Contagem de Instalações 4,065
Versão Atual 0.0.1.14
Última Atualização 2023-11-11
Data de Publicação 2020-12-12
Classificação 5.00/5 Total de 15 Avaliações
Desenvolvedor SpaceshipCaptain
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/SpaceshipCaptain/LookingGlassTTV
URL da Página de Ajuda https://twitter.com/SpaceshipCapt
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TTV Looking Glass",
    "version": "0.0.1.14",
    "description": "Simply generate links to other perspectives while watching Twitch clips and vods. Adds Express Vod to Twitch nav bar.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/clips.twitch.tv\/*",
                "*:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "manifest_version": 3
}