Tweaks for Google Chat

Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms.

Was ist Tweaks for Google Chat?

Tweaks for Google Chat ist eine Chrome-Erweiterung, die von AdamMcDonagh entwickelt wurde, und ihr Hauptmerkmal ist "Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms.".

Erweiterungsscreenshots

screenshot

Tweaks for Google Chat-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tweaks for Google Chat-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is a fork of the original "Google Chat thread links & quote reply" which appears to no longer be supported.

For old style chat rooms, adds a button on each message to quote reply to them.
Also hides GitHub Enterprise and Google sign-in previews since they always show up empty in Google Chat.                    

Grundlegende Informationen zur Erweiterung

Name Tweaks for Google Chat Tweaks for Google Chat
ID fgpblhjnbljckjanmjmhipbjhgjjnmkg
Offizielle URL https://chromewebstore.google.com/detail/tweaks-for-google-chat/fgpblhjnbljckjanmjmhipbjhgjjnmkg
Beschreibung Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms.
Dateigröße 14.01 KB
Installationsanzahl 14,178
Aktuelle Version 1.0.4
Letztes Update 2023-07-09
Veröffentlichungsdatum 2021-05-29
Bewertung 3.82/5 Insgesamt 11 Bewertungen
Entwickler AdamMcDonagh
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/adammcdonagh/google-chat-tweaks
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tweaks for Google Chat",
    "description": "Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms.",
    "version": "1.0.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.google.com\/*",
                "https:\/\/mail.google.com\/chat\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}