Twitch VOD Addressbar Sync
Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Wat is Twitch VOD Addressbar Sync?
Twitch VOD Addressbar Sync is een Chrome-extensie ontwikkeld door literallyjosh.com, en de belangrijkste functie is "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch VOD Addressbar Sync
Download Twitch VOD Addressbar Sync-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Just syncs the twitch.tv addressbar with the video timestamp on VODs (in the HTML5 player only). There are quirks with it adding a ton of history entries but there's an option to remove old entries.
Basisinformatie over de Extensie
Naam | Twitch VOD Addressbar Sync |
ID | bidddahndlgibpldmghnjegldfamnmnc |
Officiële URL | https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc |
Beschrijving | Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player. |
Bestandsgrootte | 66.65 KB |
Aantal Installaties | 26 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2015-08-28 |
Publicatiedatum | 2015-08-28 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | literallyjosh.com |
Betalingswijze | free |
Ondersteunde Talen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch VOD Addressbar Sync", "description": "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.", "version": "0.1", "icons": { "16": "Bandage-26.png", "48": "Bandage-50.png" }, "page_action": { "default_icon": "Bandage-26.png", "default_title": "Twitch VOD Addressbar Sync", "default_popup": "options.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*\/v\/*" ], "js": [ "jquery-1.11.3.min.js", "jquery.history.js", "sync_bar.js" ] } ], "permissions": [ "tabs", "history", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |