Twitch VOD Addressbar Sync

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

O que é Twitch VOD Addressbar Sync?

Twitch VOD Addressbar Sync é uma extensão do Chrome desenvolvida por literallyjosh.com, e sua principal característica é "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch VOD Addressbar Sync

Baixe arquivos de extensão Twitch VOD Addressbar Sync no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Twitch VOD Addressbar Sync Twitch VOD Addressbar Sync
ID bidddahndlgibpldmghnjegldfamnmnc
URL Oficial https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc
Descrição Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
Tamanho do Arquivo 66.65 KB
Contagem de Instalações 26
Versão Atual 0.1
Última Atualização 2015-08-28
Data de Publicação 2015-08-28
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor literallyjosh.com
Tipo de Pagamento free
Idiomas Suportados 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
    }
}