Actual PogChamp
Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.
Qu'est-ce que Actual PogChamp ?
Actual PogChamp est une extension Chrome développée par temperdesignllc, et sa fonction principale est "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Actual PogChamp
Téléchargez les fichiers d'extension Actual PogChamp au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | gbkjnejppojphhgjpfnbbmnohmgbbbdg |
URL Officiel | https://chromewebstore.google.com/detail/actual-pogchamp/gbkjnejppojphhgjpfnbbmnohmgbbbdg |
Description | Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version. |
Taille du Fichier | 12.41 KB |
Nombre d'Installations | 447 |
Version Actuelle | 1.4.1 |
Dernière Mise à Jour | 2023-09-13 |
Date de Publication | 2021-01-10 |
Évaluation | 4.10/5 Total 30 Évaluations |
Développeur | temperdesignllc |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Glasket/pogext |
Langues Prises en Charge | 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" } } |