PogChampion

Choose your own PogChamp image!

¿Qué es PogChampion?

PogChampion es una extensión de Chrome desarrollada por ordinaryapplications, y su función principal es "Choose your own PogChamp image!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión PogChampion

Descarga archivos de extensión PogChampion en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre PogChampion PogChampion
ID pgpmednedjecbopfjfmebgohkpkcjoec
URL Oficial https://chromewebstore.google.com/detail/pogchampion/pgpmednedjecbopfjfmebgohkpkcjoec
Descripción Choose your own PogChamp image!
Tamaño del Archivo 85.61 KB
Cantidad de Instalaciones 85
Versión Actual 3.1
Última Actualización 2021-01-13
Fecha de Publicación 2021-01-08
Calificación 4.31/5 Total de 13 Calificaciones
Desarrollador ordinaryapplications
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/dylantheriot/pogchampion
URL de la Página de Ayuda https://github.com/dylantheriot/pogchampion/issues
Idiomas Soportados 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"
    ]
}