Actual PogChamp

Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.

Actual PogChamp là gì?

Actual PogChamp là một tiện ích mở rộng Chrome được phát triển bởi temperdesignllc, và tính năng chính của nó là "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Actual PogChamp

Tải xuống các tệp mở rộng Actual PogChamp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Actual PogChamp Actual PogChamp
ID gbkjnejppojphhgjpfnbbmnohmgbbbdg
URL Chính Thức https://chromewebstore.google.com/detail/actual-pogchamp/gbkjnejppojphhgjpfnbbmnohmgbbbdg
Mô tả Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.
Kích Thước Tệp 12.41 KB
Số Lần Cài Đặt 447
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2023-09-13
Ngày Phát Hành 2021-01-10
Đánh Giá 4.10/5 Tổng số 30 Đánh Giá
Nhà Phát Triển temperdesignllc
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Glasket/pogext
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}