Actual PogChamp

Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.

Actual PogChampとは何ですか?

Actual PogChampはtemperdesignllcによって開発されたChromeの拡張機能で、その主な機能は「Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.」です。

拡張機能のスクリーンショット

screenshot

Actual PogChamp拡張機能のCRXファイルをダウンロード

Actual PogChamp拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Replaces the twitch.tv 24-hour cycling PogChamp image with the original Gootecks version of the emote.

The script actively swaps out the image tags used on twitch.tv and replaces them with a different image tag that uses the original PogChamp emote as the source. This replacement happens in the live chat, the emote picker, on the emote cards, and on VODs.

The emote image file is included in the extension and the swap happens entirely locally, meaning the streamer doesn't have to activate anything like with BetterTwitchTV or FrankerFaceZ.                    

拡張機能の基本情報

名前 Actual PogChamp Actual PogChamp
ID gbkjnejppojphhgjpfnbbmnohmgbbbdg
公式URL https://chromewebstore.google.com/detail/actual-pogchamp/gbkjnejppojphhgjpfnbbmnohmgbbbdg
説明 Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.
ファイルサイズ 12.41 KB
インストール数 447
現在のバージョン 1.4.1
最終更新日 2023-09-13
公開日 2021-01-10
評価 4.10/5 合計 30 レビュー
開発者 temperdesignllc
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Glasket/pogext
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Actual PogChamp",
    "version": "1.4.1",
    "description": "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/128.png"
    },
    "permissions": [
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}