GChat - Pin threads

Pin your threads to use another time

GChat - Pin threads là gì?

GChat - Pin threads là một tiện ích mở rộng Chrome được phát triển bởi lasalvadordev, và tính năng chính của nó là "Pin your threads to use another time".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GChat - Pin threads

Tải xuống các tệp mở rộng GChat - Pin threads 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

                        An Extension to pin your threads on google chat. With this package you can click on the "Pin Your Thread" button and we save the thread's link with a name of your preference and you can easily access this thread when you want. You can remove the Pinned thread when you want clickingin the "X" button.                    

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

Tên GChat - Pin threads GChat - Pin threads
ID indkckjhobpnbgkjbppehhihfpdmcjon
URL Chính Thức https://chromewebstore.google.com/detail/gchat-pin-threads/indkckjhobpnbgkjbppehhihfpdmcjon
Mô tả Pin your threads to use another time
Kích Thước Tệp 8.93 KB
Số Lần Cài Đặt 498
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2022-08-11
Ngày Phát Hành 2022-02-14
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lasalvadordev
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": 3,
    "name": "GChat - Pin threads",
    "description": "Pin your threads to use another time",
    "action": {
        "default_icon": ".\/images\/logo.png",
        "default_popup": ".\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.google.com\/*",
                "https:\/\/mail.google.com\/chat\/*"
            ],
            "all_frames": true,
            "js": [
                ".\/scripts\/content.js"
            ],
            "css": [
                ".\/styles\/styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "version": "1.0.5"
}