Twitch VOD Addressbar Sync

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

Hvad er Twitch VOD Addressbar Sync?

Twitch VOD Addressbar Sync er en Chrome-udvidelse udviklet af literallyjosh.com, og dens hovedfunktion er "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.".

Udvidelsesskærmbilleder

screenshot

Download Twitch VOD Addressbar Sync-udvidelses-CRX-fil

Download Twitch VOD Addressbar Sync-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Twitch VOD Addressbar Sync Twitch VOD Addressbar Sync
ID bidddahndlgibpldmghnjegldfamnmnc
Officiel URL https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc
Beskrivelse Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Filstørrelse 66.65 KB
Antal Installationer 26
Nuværende Version 0.1
Senest Opdateret 2015-08-28
Udgivelsesdato 2015-08-28
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler literallyjosh.com
Betalingsmetode free
Understøttede Sprog 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
    }
}