TTV TV
Opens a new Twitch.tv stream when a user's currently watched one closes.
Hvad er TTV TV?
TTV TV er en Chrome-udvidelse udviklet af Alex Berliner, og dens hovedfunktion er "Opens a new Twitch.tv stream when a user's currently watched one closes.".
Udvidelsesskærmbilleder
Download TTV TV-udvidelses-CRX-fil
Download TTV TV-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Provides a simple UI to arrange a list of twitch.tv streamers to switch to when your watched stream goes offline.
Grundlæggende oplysninger om udvidelsen
Navn | TTV TV |
ID | bnmlihhhebgoiihoaicfmahhcheecoaa |
Officiel URL | https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa |
Beskrivelse | Opens a new Twitch.tv stream when a user's currently watched one closes. |
Filstørrelse | 498 KB |
Antal Installationer | 60 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2016-05-01 |
Udgivelsesdato | 2016-05-01 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | Alex Berliner |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Monorail/TTVTV |
Understøttede Sprog | 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" ] } } |