TTV TV
Opens a new Twitch.tv stream when a user's currently watched one closes.
O que é TTV TV?
TTV TV é uma extensão do Chrome desenvolvida por Alex Berliner, e sua principal característica é "Opens a new Twitch.tv stream when a user's currently watched one closes.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TTV TV
Baixe arquivos de extensão TTV TV 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
Provides a simple UI to arrange a list of twitch.tv streamers to switch to when your watched stream goes offline.
Informações Básicas da Extensão
Nome | TTV TV |
ID | bnmlihhhebgoiihoaicfmahhcheecoaa |
URL Oficial | https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa |
Descrição | Opens a new Twitch.tv stream when a user's currently watched one closes. |
Tamanho do Arquivo | 498 KB |
Contagem de Instalações | 60 |
Versão Atual | 1.0.1 |
Última Atualização | 2016-05-01 |
Data de Publicação | 2016-05-01 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Alex Berliner |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Monorail/TTVTV |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TTV TV", "description": "Opens a new Twitch.tv stream when a user's currently watched one closes.", "version": "1.0.1", "browser_action": { "default_icon": "libs\/images\/icon128.png" }, "icons": { "16": "libs\/images\/icon16.png", "48": "libs\/images\/icon48.png", "128": "libs\/images\/icon128.png" }, "web_accessible_resources": [ "popup.html", "libs\/angular.min.js" ], "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "https:\/\/api.twitch.tv\/*", "activeTab", "tabs", "storage" ], "optional_permissions": [ "history" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "libs\/jquery-2.2.1.min.js", "content.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] } } |