Emotes Everywhere

See custom emotes on any site.

Co to jest Emotes Everywhere?

Emotes Everywhere to rozszerzenie Chrome opracowane przez https://epalmese.github.io, a jego główną funkcją jest „See custom emotes on any site.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Emotes Everywhere

Pobierz pliki rozszerzeń Emotes Everywhere w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Emotes Everywhere Emotes Everywhere
ID fmnokfpcldjdaaajddjmkjknbkamdknl
Oficjalny URL https://chromewebstore.google.com/detail/emotes-everywhere/fmnokfpcldjdaaajddjmkjknbkamdknl
Opis See custom emotes on any site.
Rozmiar pliku 35.53 KB
Liczba instalacji 3,671
Aktualna Wersja 0.3.2
Ostatnia Aktualizacja 2021-08-15
Data Publikacji 2020-05-14
Ocena 4.20/5 Łącznie 10 Oceny
Deweloper https://epalmese.github.io
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}