Interpreter events tracker for Bilingual

This extension captures Bilingual LS interpreters' events when using client-specific applications.

Interpreter events tracker for Bilingual là gì?

Interpreter events tracker for Bilingual là một tiện ích mở rộng Chrome được phát triển bởi Danilo Quispe Lucana, và tính năng chính của nó là "This extension captures Bilingual LS interpreters' events when using client-specific applications.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Interpreter events tracker for Bilingual

Tải xuống các tệp mở rộng Interpreter events tracker for Bilingual dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension detects certain events triggered by interpreters in client's platform (such as login, logout or start taking calls) as part of his/her regular use of such platform. This events information allows Bilingual LS to collect statistics about interpreters performance and effective working time.

No personal information (either interpreter's nor client's) is collected, stored or distributed in any way, and no information is extracted from other websites nor web apps that could be used by Bilingual interpreters. Only client-specific platform used by Bilingual LS interpreters in his/her daily work are analyzed for events tracking.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Interpreter events tracker for Bilingual Interpreter events tracker for Bilingual
ID cbkmdannonnopjdbfkkfoaeeeihcljid
URL Chính Thức https://chromewebstore.google.com/detail/interpreter-events-tracke/cbkmdannonnopjdbfkkfoaeeeihcljid
Mô tả This extension captures Bilingual LS interpreters' events when using client-specific applications.
Kích Thước Tệp 33.09 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 0.4.1.1
Cập Nhật Lần Cuối 2021-12-24
Ngày Phát Hành 2021-10-20
Nhà Phát Triển Danilo Quispe Lucana
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Interpreter events tracker for Bilingual",
    "description": "This extension captures Bilingual LS interpreters' events when using client-specific applications.",
    "version": "0.4.1.1",
    "author": "Danilo Alejandro Quispe Lucana",
    "homepage_url": "https:\/\/www.bilingual-ls.com\/",
    "icons": {
        "16": "icons\/extension-16.png",
        "32": "icons\/extension-32.png",
        "48": "icons\/extension-48.png",
        "128": "icons\/extension-128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "https:\/\/*.telelanguage.com\/*"
    ],
    "background": {
        "scripts": [
            "const.js",
            "api.js",
            "status.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.telelanguage.com\/*"
            ],
            "js": [
                "const.js",
                "status.js",
                "dom.js",
                "inject.js",
                "dom-observer.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject-script.js"
    ],
    "options_page": "options\/options.html"
}