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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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
    }
}