Twitch VOD Addressbar Sync
Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Qu'est-ce que Twitch VOD Addressbar Sync ?
Twitch VOD Addressbar Sync est une extension Chrome développée par literallyjosh.com, et sa fonction principale est "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch VOD Addressbar Sync
Téléchargez les fichiers d'extension Twitch VOD Addressbar Sync au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Twitch VOD Addressbar Sync |
ID | bidddahndlgibpldmghnjegldfamnmnc |
URL Officiel | https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc |
Description | Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player. |
Taille du Fichier | 66.65 KB |
Nombre d'Installations | 26 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2015-08-28 |
Date de Publication | 2015-08-28 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | literallyjosh.com |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |