PogChampion

Choose your own PogChamp image!

O que é PogChampion?

PogChampion é uma extensão do Chrome desenvolvida por ordinaryapplications, e sua principal característica é "Choose your own PogChamp image!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PogChampion

Baixe arquivos de extensão PogChampion no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PogChampion PogChampion
ID pgpmednedjecbopfjfmebgohkpkcjoec
URL Oficial https://chromewebstore.google.com/detail/pogchampion/pgpmednedjecbopfjfmebgohkpkcjoec
Descrição Choose your own PogChamp image!
Tamanho do Arquivo 85.61 KB
Contagem de Instalações 85
Versão Atual 3.1
Última Atualização 2021-01-13
Data de Publicação 2021-01-08
Classificação 4.31/5 Total de 13 Avaliações
Desenvolvedor ordinaryapplications
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/dylantheriot/pogchampion
URL da Página de Ajuda https://github.com/dylantheriot/pogchampion/issues
Idiomas Suportados 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"
    ]
}