Actual PogChamp
Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.
Actual PogChamp란 무엇입니까?
Actual PogChamp은(는) temperdesignllc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version."입니다.
확장 프로그램 스크린샷
Actual PogChamp 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Replaces the twitch.tv 24-hour cycling PogChamp image with the original Gootecks version of the emote. The script actively swaps out the image tags used on twitch.tv and replaces them with a different image tag that uses the original PogChamp emote as the source. This replacement happens in the live chat, the emote picker, on the emote cards, and on VODs. The emote image file is included in the extension and the swap happens entirely locally, meaning the streamer doesn't have to activate anything like with BetterTwitchTV or FrankerFaceZ.
확장 프로그램 기본 정보
이름 | |
ID | gbkjnejppojphhgjpfnbbmnohmgbbbdg |
공식 URL | https://chromewebstore.google.com/detail/actual-pogchamp/gbkjnejppojphhgjpfnbbmnohmgbbbdg |
설명 | Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version. |
파일 크기 | 12.41 KB |
설치 횟수 | 447 |
현재 버전 | 1.4.1 |
최근 업데이트 | 2023-09-13 |
출시 날짜 | 2021-01-10 |
평점 | 4.10/5 총 30 개의 평점 |
개발자 | temperdesignllc |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Glasket/pogext |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Actual PogChamp", "version": "1.4.1", "description": "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "run_at": "document_end", "js": [ "main.js" ] } ], "icons": { "128": "images\/128.png" }, "permissions": [ "webNavigation" ], "host_permissions": [ "*:\/\/*.twitch.tv\/*" ], "web_accessible_resources": [ { "resources": [ "images\/*.png" ], "matches": [ "*:\/\/*.twitch.tv\/*" ] } ], "background": { "service_worker": "background.js" } } |