PogChampion
Choose your own PogChamp image!
Cos'è PogChampion?
PogChampion è un'estensione di Chrome sviluppata da ordinaryapplications, e la sua funzione principale è "Choose your own PogChamp image!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PogChampion
Scarica i file di estensione PogChampion 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
Want to have your own personal PogChamp? Want to see how a certain creator's Pog face would feel during the most hype moments on Twitch? Then PogChampion is perfect for you! Simply upload an image of your choice, and any time someone uses the PogChamp emote in Twitch chat you'll see your own image instead! In addition, you can easily turn this extension off by unchecking the "Replace PogChamp" checkbox so that you can view Twitch's PogChamp of the day. Choose your PogChampion now! Note: Your PogChampion will only be visible on your local computer. By default, your PogChamp is the HungryBox PogChamp.
Informazioni di Base sull'Estensione
Nome | |
ID | pgpmednedjecbopfjfmebgohkpkcjoec |
URL Ufficiale | https://chromewebstore.google.com/detail/pogchampion/pgpmednedjecbopfjfmebgohkpkcjoec |
Descrizione | Choose your own PogChamp image! |
Dimensione del File | 85.61 KB |
Conteggio Installazioni | 85 |
Versione Corrente | 3.1 |
Ultimo Aggiornamento | 2021-01-13 |
Data di Pubblicazione | 2021-01-08 |
Valutazione | 4.31/5 Totale 13 Valutazioni |
Sviluppatore | ordinaryapplications |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/dylantheriot/pogchampion |
URL della Pagina di Aiuto | https://github.com/dylantheriot/pogchampion/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PogChampion", "version": "3.1", "manifest_version": 2, "description": "Choose your own PogChamp image!", "content_scripts": [ { "matches": [ "http:\/\/twitch.tv\/*", "https:\/\/twitch.tv\/*", "https:\/\/www.twitch.tv\/*", "http:\/\/www.twitch.tv\/*" ], "js": [ "pogchamp.js" ] } ], "browser_action": { "default_popup": "pogchamp.html" }, "permissions": [ "storage" ], "icons": { "16": "icon16x16.png", "48": "icon48x48.png", "128": "icon128x128.png" }, "web_accessible_resources": [ "hboxPogChamp.png" ] } |