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.”。

擴展截圖

screenshot

下載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 Twitch VOD Addressbar Sync
ID bidddahndlgibpldmghnjegldfamnmnc
官方網址 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
    }
}