Twitch VOD Addressbar Sync
Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Что такое Twitch VOD Addressbar Sync?
Twitch VOD Addressbar Sync - это расширение Chrome, разработанное literallyjosh.com, и его основная функция - "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.".
Снимки экрана расширения
Скачать файл CRX расширения Twitch VOD Addressbar Sync
Скачайте файлы расширений Twitch VOD Addressbar Sync в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Twitch VOD Addressbar Sync |
ID | bidddahndlgibpldmghnjegldfamnmnc |
Официальный URL | https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc |
Описание | Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player. |
Размер файла | 66.65 KB |
Количество установок | 26 |
Текущая Версия | 0.1 |
Последнее Обновление | 2015-08-28 |
Дата публикации | 2015-08-28 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | literallyjosh.com |
Тип оплаты | free |
Поддерживаемые языки | 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 } } |