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是由literallyjosh.com开发的Chrome扩展程序,该扩展的主要功能是“Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.”。
扩展截图
下载Twitch VOD Addressbar Sync扩展crx文件
下载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 } } |