Twitch VOD Addressbar Sync
Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Co je Twitch VOD Addressbar Sync?
Twitch VOD Addressbar Sync je rozšíření Chrome vyvinuté literallyjosh.com, a jeho hlavní funkcí je „Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitch VOD Addressbar Sync
Stáhněte si soubory rozšíření Twitch VOD Addressbar Sync ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Twitch VOD Addressbar Sync |
ID | bidddahndlgibpldmghnjegldfamnmnc |
Oficiální URL | https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc |
Popis | Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player. |
Velikost souboru | 66.65 KB |
Počet instalací | 26 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2015-08-28 |
Datum Vydání | 2015-08-28 |
Hodnocení | 3.00/5 Celkem 2 Hodnocení |
Vývojář | literallyjosh.com |
Typ Platby | free |
Podporované Jazyky | 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 } } |