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
官方網址 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
電子郵箱 [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"
    }
}