HTML5 Syncer

Allows synchronisation of 2 HTML5 video and audio streams even on different tabs. Just click the popup to scan each page and press…

¿Qué es HTML5 Syncer?

HTML5 Syncer es una extensión de Chrome desarrollada por crabshank, y su función principal es "Allows synchronisation of 2 HTML5 video and audio streams even on different tabs. Just click the popup to scan each page and press…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión HTML5 Syncer

Descarga archivos de extensión HTML5 Syncer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Allows synchronisation of 2 HTML5 video and audio streams even on different tabs. Just click the popup to scan each page and press the "Sync" button to generate sync buttons next to the video/audio, then click them (preferably when both are paused at the right times) to synchronise. Press the "Flush" button to remove synchronisation.

The streams will pause, play, change playback rate and seek together.

You can check the Developer tools console for information.

N.B. You may have to go to "chrome://extensions/" and click the reload icon for this extension if the delay does not show up on the green sync button.

Changes:
15/01/2023 - More efficient code used when finding streams.
05/01/2023 - Faster code used when finding streams.
26/10/2022 - Improved element handling (e.g. searching for tags).
15/06/2021 - Handles streams waiting for data better.
18/05/2021 - Fixed issue where the delay could be written on the wrong button; made the buttons appear below audio tags if there is space at the bottom of the page.
16/05/2021 - Removed global variables from background script; improved message passing to tabs. 
04/05/2021 - Added "return true;" to the end of the "onMessage" functions.
19/04/2021 - Replaced 'chrome.extension.sendMessage/onMessage'
17/03/2021 - Minor code cleanup.
08/03/2021 - Updated manifest to v3.
24/02/2021 - Bugfix for last update.
24/02/2021 - Fixed issue where the sync button would appear closer to the top-centre than the top-left on some videos.
10/02/2021 - Better handling of 'Flush' event.
27/01/2021 - Minor amendments.
26/01/2021 - Now when the bar auto-hides, if you place the cursor where it was, it will reappear if it was clickable. Clicking the sync button whilst green now has no effect. Minor change to colour scheme, plus other fixes.
10/01/2021 - Fixed colour scheme of 'Scan' and 'Flush' buttons in popup (especially in dark mode).
13/12/2020 - Fixed issue that caused pause/play loop when seeking. Now can press 'Scan' more than once to generate sync buttons.
23/09/2020 - Keeps up to date with the tabs containing the synced videos.
Delay now displays immediately after syncing.
Event listeners now removed after the 'flush' action.
'src' is now correctly found for synced videos.
HTML button initialisation fixed.
20/09/2020 - Slight amendments to syncing procedure.
06/09/2020 - Improved console logging.
23/05/2020 - Fixed issues causing the wrong media element to be synced to, preventing the sync button being updated properly, and prevents the video automatically playing when the sync button is pressed sometimes.
07/05/2020 - Improved visibility CSS.
05/05/2020 - Adjusted visibility, changed event listeners and delay displayed in sync button.
04/03/2020 - Added close buttons, to remove sync buttons.
05/03/2020 - Placed sync and close buttons in a transparent div.                    

Información Básica de la Extensión

Nombre HTML5 Syncer HTML5 Syncer
ID lhaanannlkmcngdladnjjellfnadlpdf
URL Oficial https://chromewebstore.google.com/detail/html5-syncer/lhaanannlkmcngdladnjjellfnadlpdf
Descripción Allows synchronisation of 2 HTML5 video and audio streams even on different tabs. Just click the popup to scan each page and press…
Tamaño del Archivo 9.95 KB
Cantidad de Instalaciones 74
Versión Actual 1.68
Última Actualización 2023-10-16
Fecha de Publicación 2020-05-07
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador crabshank
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/crabshank/HTML5-Syncer
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HTML5 Syncer",
    "version": "1.68",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_icon": "ct.png",
        "default_popup": "index.html",
        "default_title": "Scan for videos\/audio streams"
    },
    "icons": {
        "128": "ct.png"
    }
}