tkm-gchat-ext

Makes Google Chat™ more useful. Read Later, Copy Message/Thread URL, Change Favorite Emoji, Change List Order, etc.

tkm-gchat-ext क्या है?

tkm-gchat-ext たかみ द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes Google Chat™ more useful. Read Later, Copy Message/Thread URL, Change Favorite Emoji, Change List Order, etc."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में tkm-gchat-ext एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Adds features to make Google Chat™ more useful.

- Support English and Japanese
- Support dark mode and light mode
- Button to show the mentioned messages
- Button to copy the URL of the thread
- Button to copy the URL of the message
- Enable to jump to not only thread but also message
- Read Later (add message to list, and jump to message from list)
- Change the set of frequently used emoji(reaction)
- Change the Display Name of Spaces
- Color Labels to help distinguish Spaces by color
- Display chat list and space list compactly
- Change the display order of each item in chat list and space list
- Resize the width of chat list and space list
- Express the code blocks in style
- Express the block quote (>) in style
- Change the format of posted datetime
- Display the user id next to the poster's name
- Set some shortcut keys                    

एक्सटेंशन की मूल जानकारी

नाम tkm-gchat-ext tkm-gchat-ext
ID dndlogdahhepeejieppcfccajdbmeajd
आधिकारिक URL https://chromewebstore.google.com/detail/tkm-gchat-ext/dndlogdahhepeejieppcfccajdbmeajd
विवरण Makes Google Chat™ more useful. Read Later, Copy Message/Thread URL, Change Favorite Emoji, Change List Order, etc.
फ़ाइल का आकार 174 KB
स्थापना संख्या 5,109
वर्तमान संस्करण 2.6.1
अंतिम अपडेट 2023-12-19
प्रकाशन तिथि 2022-02-05
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर たかみ
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ExtensionName__",
    "description": "__MSG_ExtensionDescription__",
    "version": "2.6.1",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/chat\/*",
                "https:\/\/chat.google.com\/*"
            ],
            "css": [
                "tkm-gchat-ext-main.css"
            ],
            "js": [
                "tkm-gchat-ext-main.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset-msg-jump",
                "enabled": false,
                "path": "ruleset-msg-jump.json"
            }
        ]
    },
    "action": {
        "default_icon": {
            "128": "icon-128.png"
        },
        "default_popup": "tkm-gchat-ext-popup.html"
    },
    "background": {
        "service_worker": "tkm-gchat-ext-background.js"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/chat.google.com\/*\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}