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. 拡張機能の基本情報
| 名前 | |
| 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
}
} | |