Twitch Emotes Downloader

Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…

Twitch Emotes Downloader란 무엇입니까?

Twitch Emotes Downloader은(는) Maeverr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…"입니다.

확장 프로그램 스크린샷

screenshot

Twitch Emotes Downloader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Instantly access and download a wide range of Twitch emojis directly from chat with ease.
With our new and improved functionality, you can now choose between two convenient options.
Option 1 enables you to download individual emoji images. Alternatively, with Option 2, you can effortlessly download the entire collection of emojis in a compressed zip file, saving you time and storage space.                    

확장 프로그램 기본 정보

이름 Twitch Emotes Downloader Twitch Emotes Downloader
ID hchmfokcihnfaljjkdafaclojmgibcgm
공식 URL https://chromewebstore.google.com/detail/twitch-emotes-downloader/hchmfokcihnfaljjkdafaclojmgibcgm
설명 Instantly access and download a wide range of Twitch emojis directly from chat with ease. With our new and improved functionality,…
파일 크기 53.21 KB
설치 횟수 1,184
현재 버전 0.8
최근 업데이트 2024-02-26
출시 날짜 2023-06-05
평점 4.33/5 총 6 개의 평점
개발자 Maeverr
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Emotes Downloader",
    "version": "0.8",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "action": {
        "default_title": "init",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "content-min.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ]
        },
        {
            "run_at": "document_start",
            "js": [
                "zipper.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ]
        }
    ]
}