Actual PogChamp

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

Actual PogChamp क्या है?

Actual PogChamp temperdesignllc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version."।

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

screenshot

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

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

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

                        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
ईमेल [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"
    }
}