GChat - Pin threads

Pin your threads to use another time

Что такое GChat - Pin threads?

GChat - Pin threads - это расширение Chrome, разработанное lasalvadordev, и его основная функция - "Pin your threads to use another time".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения GChat - Pin threads

Скачайте файлы расширений GChat - Pin threads в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название GChat - Pin threads GChat - Pin threads
ID indkckjhobpnbgkjbppehhihfpdmcjon
Официальный URL https://chromewebstore.google.com/detail/gchat-pin-threads/indkckjhobpnbgkjbppehhihfpdmcjon
Описание Pin your threads to use another time
Размер файла 8.93 KB
Количество установок 498
Текущая Версия 1.0.5
Последнее Обновление 2022-08-11
Дата публикации 2022-02-14
Рейтинг 3.50/5 Всего 2 оценок
Разработчик lasalvadordev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
}