Google Chat Thread Switcher

Google Chat Extension to add a Thread Switcher

Google Chat Thread Switcherคืออะไร?

Google Chat Thread Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://itagaki.eek.jp และคุณลักษณะหลักของมันคือ "Google Chat Extension to add a Thread Switcher"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Chat Thread Switcher

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

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

                        Once installed on Google Chrome, it allows you to select and go threads (topics) in Google Chat.

## Detailed explanation
Some Google Chat "Spaces" (used to be called "Chat Rooms") can have multiple threads, and some cannot. You can choose that when you create the Space.
This extension adds a drop-down list to a Space with multiple threads, where you can pick a Thread and move it around.

To complicate things, Google has changed the term "Thread" to "Topic." Following suit, I have changed this extension to display "Topic." But I don't want to change the extension name, so it remains "Google Chat Thread Switcher."

Further complicating, Google has implemented an additional "inline thread" feature for spaces that do not have threads (or rather multi-topic). Please do not confuse them.

## Usage
After installing this extension, when you open a space with threads in Chat, a drop-down list will appear in the upper right corner, and when you click on it, you will see a list of loaded thread titles. If you select a thread there, it will scroll to the input field for that thread.

In the drop-down list, the titles of unread threads will be displayed in bold.

Thread titles are automatically created from the first line of the first post in each thread, so when creating a new thread, it is recommended that the first line be just [title]. (See the source if you want to know the detailed rules).

When you click in a thread, the thread title will be shown at the top of the chat room for one second.

Unfortunately, threads that are not loaded will not appear in the drop-down list. If you scroll through the chat room and a new thread is loaded, it will be reflected in the drop-down list. For this purpose, I have provided a "Upper end (to fetch more topics)" function at the beginning of the drop-down list. This is an unavoidable feature, but if you have solved this issue, please contribute to the GitHub repository.                    

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

ชื่อ Google Chat Thread Switcher Google Chat Thread Switcher
ID pcfiellepclcooaaifkkdnpcmeinafba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-chat-thread-switch/pcfiellepclcooaaifkkdnpcmeinafba
คำอธิบาย Google Chat Extension to add a Thread Switcher
ขนาดไฟล์ 33.79 KB
จำนวนการติดตั้ง 1,665
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2022-12-19
วันที่เผยแพร่ 2022-04-20
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://itagaki.eek.jp
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/itagagaki/Google-Chat-Thread-Switcher
URL หน้าช่วยเหลือ https://github.com/itagagaki/Google-Chat-Thread-Switcher/issues
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Chat Thread Switcher",
    "description": "Google Chat Extension to add a Thread Switcher",
    "version": "1.2.0",
    "homepage_url": "https:\/\/github.com\/itagagaki\/Google-Chat-Thread-Switcher",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/chat.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                ".\/thread-switcher.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.google.com\/*"
    ]
}