PogChampion

Choose your own PogChamp image!

PogChampion란 무엇입니까?

PogChampion은(는) ordinaryapplications에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Choose your own PogChamp image!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

PogChampion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 PogChampion PogChampion
ID pgpmednedjecbopfjfmebgohkpkcjoec
공식 URL https://chromewebstore.google.com/detail/pogchampion/pgpmednedjecbopfjfmebgohkpkcjoec
설명 Choose your own PogChamp image!
파일 크기 85.61 KB
설치 횟수 85
현재 버전 3.1
최근 업데이트 2021-01-13
출시 날짜 2021-01-08
평점 4.31/5 총 13 개의 평점
개발자 ordinaryapplications
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dylantheriot/pogchampion
도움말 페이지 URL https://github.com/dylantheriot/pogchampion/issues
지원되는 언어 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"
    ]
}