TimeCat Chrome

A Magical Web Recorder

Cos'è TimeCat Chrome?

TimeCat Chrome è un'estensione di Chrome sviluppata da https://timecatjs.com, e la sua funzione principale è "A Magical Web Recorder".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione TimeCat Chrome

Scarica i file di estensione TimeCat Chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

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

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

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

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

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

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

Informazioni di Base sull'Estensione

Nome TimeCat Chrome TimeCat Chrome
ID jgnkkambbdmhfdbdbkljlenddlbplhal
URL Ufficiale https://chromewebstore.google.com/detail/timecat-chrome/jgnkkambbdmhfdbdbkljlenddlbplhal
Descrizione A Magical Web Recorder
Dimensione del File 148 KB
Conteggio Installazioni 766
Versione Corrente 1.2.0.8
Ultimo Aggiornamento 2021-09-01
Data di Pubblicazione 2020-06-24
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://timecatjs.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/oct16/TimeCat
URL della Pagina di Aiuto https://github.com/oct16/TimeCat/issues
Lingue Supportate 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"
    ]
}