Twitch VOD Addressbar Sync

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

Co to jest Twitch VOD Addressbar Sync?

Twitch VOD Addressbar Sync to rozszerzenie Chrome opracowane przez literallyjosh.com, a jego główną funkcją jest „Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch VOD Addressbar Sync

Pobierz pliki rozszerzeń Twitch VOD Addressbar Sync w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch VOD Addressbar Sync Twitch VOD Addressbar Sync
ID bidddahndlgibpldmghnjegldfamnmnc
Oficjalny URL https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc
Opis Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Rozmiar pliku 66.65 KB
Liczba instalacji 26
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2015-08-28
Data Publikacji 2015-08-28
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper literallyjosh.com
Typ Płatności free
Obsługiwane Języki 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
    }
}