Actual PogChamp

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

Cos'è Actual PogChamp?

Actual PogChamp è un'estensione di Chrome sviluppata da temperdesignllc, e la sua funzione principale è "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Actual PogChamp

Scarica i file di estensione Actual PogChamp in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Actual PogChamp Actual PogChamp
ID gbkjnejppojphhgjpfnbbmnohmgbbbdg
URL Ufficiale https://chromewebstore.google.com/detail/actual-pogchamp/gbkjnejppojphhgjpfnbbmnohmgbbbdg
Descrizione Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.
Dimensione del File 12.41 KB
Conteggio Installazioni 447
Versione Corrente 1.4.1
Ultimo Aggiornamento 2023-09-13
Data di Pubblicazione 2021-01-10
Valutazione 4.10/5 Totale 30 Valutazioni
Sviluppatore temperdesignllc
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Glasket/pogext
Lingue Supportate 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"
    }
}