Twitch VOD Addressbar Sync

Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.

Twitch VOD Addressbar Sync là gì?

Twitch VOD Addressbar Sync là một tiện ích mở rộng Chrome được phát triển bởi literallyjosh.com, và tính năng chính của nó là "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch VOD Addressbar Sync

Tải xuống các tệp mở rộng Twitch VOD Addressbar Sync dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch VOD Addressbar Sync Twitch VOD Addressbar Sync
ID bidddahndlgibpldmghnjegldfamnmnc
URL Chính Thức https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc
Mô tả Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Kích Thước Tệp 66.65 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2015-08-28
Ngày Phát Hành 2015-08-28
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển literallyjosh.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}