Tulr Utilities

Store your google meet transcripts and record screens with Tulr

什么是Tulr Utilities?

Tulr Utilities是由tulrdev开发的Chrome扩展程序,该扩展的主要功能是“Store your google meet transcripts and record screens with Tulr”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Tulr Utilities扩展crx文件

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

扩展使用说明

                        Tulr Meet helps you store google meet transcripts. Just install the extension, login and all your meeting transcripts can be accessed within Tulr. 

Go ahead and give it a try!

Release notes 
---------------------------------------------------------------------------------------------------
v1.1 patch: 
Optimized for the new google meet UI
 
v1.2 patch: 
Minor bug fixes 

v1.3 patch:
Added on-screen authentication popup.

v1.3.1 patch:
Add controls to stop the Tulr clips recorder.

v2.0 patch:
Add support to start recording from extension. 
Add pen tool to draw while recording.

v2.1 patch:
FIX: minor issue.

v2.2 patch:
Add loader for uploading video

v.2.3 patch:
Fix minor issues.

v.2.4 patch:
Fix minor issues.

v.2.5 patch:
add support to record a clip from Tulr table

v.2.6 patch:
fix minor issues.

v.2.7 patch:
- Fix Camera not working.
- Fix Tab recording not working

v.2.8 patch:
- Fix transcriptor to adapt new google meet UI changes                    

扩展基本信息

名称 Tulr Utilities Tulr Utilities
ID bkjncpfehhhjemaefodehapjhemhakon
官方URL https://chromewebstore.google.com/detail/tulr-utilities/bkjncpfehhhjemaefodehapjhemhakon
简介 Store your google meet transcripts and record screens with Tulr
文件大小 6.14 MB
安装次数 21
当前版本 2.8
更新时间 2022-02-06
上架时间 2021-05-22
评分 5.00/5 共8次评分
开发者 tulrdev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://tulr.io/
帮助页面URL https://tulr.io/
隐私政策页面URL https://tulr.io/extension-privacy-policies
支持的语言 id,de,en,fr,tr,ca,es,it,pl,pt-BR,pt-PT,ru,hi,ta,zh-CN,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tulr Utilities",
    "description": "Store your google meet transcripts and record screens with Tulr",
    "version": "2.8",
    "author": "tulr-dev",
    "default_locale": "en",
    "icons": {
        "64": "assets\/icons\/tulr-64.png",
        "32": "assets\/icons\/tulr-32.png",
        "16": "assets\/icons\/tulr-16.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/inject.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/app.tulr.io\/new-recording",
                "http:\/\/localhost:3000\/new-recording"
            ],
            "js": [
                "js\/libraries\/jquery-3.5.1.min.js",
                "js\/libraries\/jquery.nice-select.min.js",
                "js\/clips.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/detect.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "background": {
        "persistent": false,
        "page": "html\/background.html"
    },
    "permissions": [
        "",
        "activeTab",
        "tabCapture",
        "tabs",
        "storage",
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/*\/",
        "http:\/\/*\/",
        "*:\/\/api.tulr.io\/*"
    ],
    "web_accessible_resources": [
        "js\/transcriptor.js",
        "html\/camera.html",
        "html\/sources.html",
        "html\/settings.html",
        "js\/content.js",
        "css\/content.css",
        "assets\/images\/*",
        "js\/sources.js",
        "js\/cameracontent.js",
        "css\/cameracontent.css",
        "js\/audiosources.js",
        "html\/audiosources.html",
        "js\/clips.js",
        "html\/clips.html",
        "assets\/*",
        "js\/libraries\/*",
        "css\/libraries\/*",
        "css\/clips.css",
        "js\/clipsOperation.js",
        "js\/uploadingOverlay.js",
        "js\/RecordingOverlayOperation.js",
        "html\/uploadingoverlay.html"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/meet.google.com\/*",
            "https:\/\/app.tulr.io\/*",
            "https:\/\/app.tulr.io\/?close_tab_after_auth=true",
            "http:\/\/localhost:3000\/",
            "http:\/\/localhost:3000\/*"
        ]
    },
    "content_security_policy": "script-src 'self' 'wasm-eval' https:\/\/www.datadoghq-browser-agent.com\/datadog-logs.js; object-src 'self'",
    "manifest_version": 2,
    "commands": {
        "cancel": {
            "suggested_key": {
                "default": "Alt+C",
                "mac": "Alt+C"
            },
            "description": "Cancel a Recording"
        },
        "mute\/unmute": {
            "suggested_key": {
                "default": "Alt+M",
                "mac": "Alt+M"
            },
            "description": "Mute\/Unmute a Recording"
        },
        "stop": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Stop a Recording"
        },
        "pause\/resume": {
            "suggested_key": {
                "default": "Alt+P",
                "mac": "Alt+P"
            },
            "description": "Pause\/Resume a Recording"
        }
    }
}