Live Caption Analytics

Provide routes to send live captions to analytics servers.

Live Caption Analyticsคืออะไร?

Live Caption Analytics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย akinori.oyama และคุณลักษณะหลักของมันคือ "Provide routes to send live captions to analytics servers."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Live Caption Analytics

ดาวน์โหลดไฟล์ส่วนขยาย Live Caption Analytics ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension sends live captions to your designated servers to perform analytics and to store in a separate spreadsheet. The server can return the calculated results back to this extesion which renders the response to the screen.
Upon configuration of server destination address of your choice and explicit activation of the feature, the extension will tentatively  (from v1.0.2 on) start sending captions in Google Meet and Zoom, (v1.0.3) transfer captions from the Chrome browser built-in Speech recognition in the same way as the other conferencing tools covered in this extension, and (v1.0.4) authenticate you through Google account to restrict access to the stored caption on the analytics server if implemented so.
The version, v1.0.4.1, allows you to choose to caption non-English language through browser speech recognion using Web Speech API, and indicates security risks though option dialog and its associated explanation available on the extension web site.
The latest version, v1.0.4.3, includes new features that gives the option to move around screen elements, fixes further unexpected behavior to send captions with the same time stamp, and provide the mechanism to allow other users to join the same session through token and emails. The version, v1.0.4.2, is a fix to locate Google Meet transcription area, which had been failing to identify the area. The version, v1.0.4.4, has a few of minor user interface corrections that protect the common UI element areas in online tools and keep users from placing LCA elements over the buttons of online tools. The version v1.0.4.5 has removed the URL restriction in Google Meet under which the URL has to end with hl=en to determine the interface language. V1.0.4.6 delivers a quick fix for unintended behavior that had hidden feedback from LCA when the user turns on recording.

V1.0.4.7 allows the extension to store an OpenAI API Key in variable, not in disk.

Sample code work in progress for the analytics is available on GitHub.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Live Caption Analytics Live Caption Analytics
ID pppkdkcchlonlocoiejjinmkdncfblji
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/live-caption-analytics/pppkdkcchlonlocoiejjinmkdncfblji
คำอธิบาย Provide routes to send live captions to analytics servers.
ขนาดไฟล์ 80.82 KB
จำนวนการติดตั้ง 743
เวอร์ชันปัจจุบัน 1.0.4.7
อัปเดตครั้งล่าสุด 2023-04-25
วันที่เผยแพร่ 2021-08-25
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา akinori.oyama
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://akinorioyama.com/live-caption-analytics/
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Live Caption Analytics",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false,
        "js": "options.js"
    },
    "description": "Provide routes to send live captions to analytics servers.",
    "version": "1.0.4.7",
    "icons": {
        "128": "icons\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*",
                "https:\/\/*.zoom.us\/wc\/*",
                "https:\/\/localhost\/lca\/*",
                "https:\/\/*.jp\/*",
                "https:\/\/*.com\/*",
                "https:\/\/nativecamp.net\/*",
                "https:\/\/*.rarejob.com\/*",
                "https:\/\/eikaiwa.dmm.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*",
        "https:\/\/*.zoom.us\/",
        "https:\/\/localhost\/lca\/*",
        "https:\/\/*.rarejob.com\/*",
        "https:\/\/eikaiwa.dmm.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.js",
                "background.js",
                "options.html",
                "icons\/icon_config.png",
                "icons\/icon_delete.png",
                "icons\/icon_circle.png",
                "icons\/icon_record.png",
                "icons\/icon_log.png",
                "icons\/icon_login.png",
                "icons\/icon_display.png",
                "icons\/icon_openai_apikey.png",
                "css\/style.css"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*",
                "https:\/\/*.zoom.us\/*",
                "http:\/\/localhost\/*",
                "https:\/\/localhost\/*",
                "https:\/\/*.jp\/*",
                "https:\/\/*.com\/*",
                "https:\/\/nativecamp.net\/*",
                "https:\/\/*.rarejob.com\/*",
                "https:\/\/eikaiwa.dmm.com\/*"
            ]
        }
    ],
    "manifest_version": 3,
    "default_locale": "en"
}