Emotes Everywhere

See custom emotes on any site.

Emotes Everywhere란 무엇입니까?

Emotes Everywhere은(는) https://epalmese.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See custom emotes on any site."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Emotes Everywhere is a browser extension that lets you set custom emotes for the whole web. Pair unique codes with any image, and the extension will seamlessly insert your emotes inline on forums, social networks, chat clients... everywhere!

- NEW: Add any emote directly from Twitch chat by right-clicking it (compatible with related extensions like BetterTTV, FrankerFaceZ, and 7TV).

- Fully functional with popular sites like Reddit, Twitter, and Twitch.
- Export and share custom sets to combine any emotes from anywhere.
- Only activates on sites that you select in the settings menu.
- Help section included in the extension's popup menu.

***

Source code visible at: https://github.com/epalmese/emotes-everywhere/                    

확장 프로그램 기본 정보

이름 Emotes Everywhere Emotes Everywhere
ID fmnokfpcldjdaaajddjmkjknbkamdknl
공식 URL https://chromewebstore.google.com/detail/emotes-everywhere/fmnokfpcldjdaaajddjmkjknbkamdknl
설명 See custom emotes on any site.
파일 크기 35.53 KB
설치 횟수 3,671
현재 버전 0.3.2
최근 업데이트 2021-08-15
출시 날짜 2020-05-14
평점 4.20/5 총 10 개의 평점
개발자 https://epalmese.github.io
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Emotes Everywhere",
    "version": "0.3.2",
    "description": "See custom emotes on any site.",
    "icons": {
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}