PogChampion

Choose your own PogChamp image!

Was ist PogChampion?

PogChampion ist eine Chrome-Erweiterung, die von ordinaryapplications entwickelt wurde, und ihr Hauptmerkmal ist "Choose your own PogChamp image!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

PogChampion-Erweiterungs-CRX-Datei herunterladen

Laden Sie PogChampion-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name PogChampion PogChampion
ID pgpmednedjecbopfjfmebgohkpkcjoec
Offizielle URL https://chromewebstore.google.com/detail/pogchampion/pgpmednedjecbopfjfmebgohkpkcjoec
Beschreibung Choose your own PogChamp image!
Dateigröße 85.61 KB
Installationsanzahl 85
Aktuelle Version 3.1
Letztes Update 2021-01-13
Veröffentlichungsdatum 2021-01-08
Bewertung 4.31/5 Insgesamt 13 Bewertungen
Entwickler ordinaryapplications
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dylantheriot/pogchampion
Hilfeseite URL https://github.com/dylantheriot/pogchampion/issues
Unterstützte Sprachen 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"
    ]
}