Tweaks for Google Chat

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

Tweaks for Google Chat란 무엇입니까?

Tweaks for Google Chat은(는) AdamMcDonagh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms."입니다.

확장 프로그램 스크린샷

screenshot

Tweaks for Google Chat 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Tweaks for Google Chat Tweaks for Google Chat
ID fgpblhjnbljckjanmjmhipbjhgjjnmkg
공식 URL https://chromewebstore.google.com/detail/tweaks-for-google-chat/fgpblhjnbljckjanmjmhipbjhgjjnmkg
설명 Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms.
파일 크기 14.01 KB
설치 횟수 14,178
현재 버전 1.0.4
최근 업데이트 2023-07-09
출시 날짜 2021-05-29
평점 3.82/5 총 11 개의 평점
개발자 AdamMcDonagh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/adammcdonagh/google-chat-tweaks
지원되는 언어 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
        }
    ]
}