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…

什么是HTML5 Syncer?

HTML5 Syncer是由crabshank开发的Chrome扩展程序,该扩展的主要功能是“Allows synchronisation of 2 HTML5 video and audio streams even on different tabs. Just click the popup to scan each page and press…”。

扩展截图

screenshot

下载HTML5 Syncer扩展crx文件

下载HTML5 Syncer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 HTML5 Syncer HTML5 Syncer
ID lhaanannlkmcngdladnjjellfnadlpdf
官方URL https://chromewebstore.google.com/detail/html5-syncer/lhaanannlkmcngdladnjjellfnadlpdf
简介 Allows synchronisation of 2 HTML5 video and audio streams even on different tabs. Just click the popup to scan each page and press…
文件大小 9.95 KB
安装次数 74
当前版本 1.68
更新时间 2023-10-16
上架时间 2020-05-07
评分 4.00/5 共1次评分
开发者 crabshank
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/crabshank/HTML5-Syncer
支持的语言 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"
    }
}