TimeCat Chrome

A Magical Web Recorder

What is TimeCat Chrome?

TimeCat Chrome is a Chrome extension developed by https://timecatjs.com, and its main feature is "A Magical Web Recorder".

Extension Screenshots

screenshot
screenshot
screenshot

Download TimeCat Chrome Extension CRX File

Download TimeCat Chrome extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        TimeCat Chrome,基于 TimeCat 实现的 Chrome 版本插件,可以在浏览器中进行网页录制与播放功能,并且支持下载与导出

注意:本插件为实验性质版本,仅供测试

新版本: 支持多网页连续录制

项目网站:http://www.timecatjs.com
问题反馈:https://github.com/oct16/TimeCat/issues/new/choose

与常规的视频录制工具不同,TimeCat-Chrome 播放的并不是视频文件,但却可以像真正的视频一样播放、快进、跳转,并获得 Pixel-Perfect 的播放体验

具体原理可以参考开源项目 TimeCat

如果您希望获得稳定的网页视频录制体验,建议使用传统录制工具

如果对 TimeCat 有任何建议,欢迎留言或者在 Github 提出 Issues,您的建议对项目改进非常重要,谢谢支持                    

Extension Basic Information

Name TimeCat Chrome TimeCat Chrome
ID jgnkkambbdmhfdbdbkljlenddlbplhal
Official URL https://chromewebstore.google.com/detail/timecat-chrome/jgnkkambbdmhfdbdbkljlenddlbplhal
Description A Magical Web Recorder
File Size 148 KB
Installation Count 766
Current Version 1.2.0.8
Last Updated 2021-09-01
Publish Date 2020-06-24
Rating 5.00/5 Total 2 Ratings
Developer https://timecatjs.com
Email [email protected]
Payment Type free
Extension Website https://github.com/oct16/TimeCat
Help Page URL https://github.com/oct16/TimeCat/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TimeCat Chrome",
    "manifest_version": 2,
    "description": "A Magical Web Recorder",
    "version": "1.2.0.8",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "timecat-chrome-background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "downloads",
        "*:\/\/*\/*"
    ],
    "options_page": "options.html",
    "browser_action": {
        "name": "~~~~~",
        "default_icon": "record-icon-black.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "timecat-chrome-content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "timecat.global.prod.js",
        "timecat-chrome-page.js"
    ]
}