Actual PogChamp
Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.
Τι είναι το Actual PogChamp;
Το Actual PogChamp είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον temperdesignllc, και η κύρια λειτουργία του είναι "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Actual PogChamp
Λήψη αρχείων επέκτασης 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" } } |