TTV TV
Opens a new Twitch.tv stream when a user's currently watched one closes.
What is TTV TV?
TTV TV is a Chrome extension developed by Alex Berliner, and its main feature is "Opens a new Twitch.tv stream when a user's currently watched one closes.".
Extension Screenshots
Download TTV TV Extension CRX File
Download TTV TV extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Provides a simple UI to arrange a list of twitch.tv streamers to switch to when your watched stream goes offline.
Extension Basic Information
Name | TTV TV |
ID | bnmlihhhebgoiihoaicfmahhcheecoaa |
Official URL | https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa |
Description | Opens a new Twitch.tv stream when a user's currently watched one closes. |
File Size | 498 KB |
Installation Count | 60 |
Current Version | 1.0.1 |
Last Updated | 2016-05-01 |
Publish Date | 2016-05-01 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Alex Berliner |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Monorail/TTVTV |
Supported Languages | 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" ] } } |