Emotes Everywhere

See custom emotes on any site.

Was ist Emotes Everywhere?

Emotes Everywhere ist eine Chrome-Erweiterung, die von https://epalmese.github.io entwickelt wurde, und ihr Hauptmerkmal ist "See custom emotes on any site.".

Erweiterungsscreenshots

screenshot

Emotes Everywhere-Erweiterungs-CRX-Datei herunterladen

Laden Sie Emotes Everywhere-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Emotes Everywhere Emotes Everywhere
ID fmnokfpcldjdaaajddjmkjknbkamdknl
Offizielle URL https://chromewebstore.google.com/detail/emotes-everywhere/fmnokfpcldjdaaajddjmkjknbkamdknl
Beschreibung See custom emotes on any site.
Dateigröße 35.53 KB
Installationsanzahl 3,671
Aktuelle Version 0.3.2
Letztes Update 2021-08-15
Veröffentlichungsdatum 2020-05-14
Bewertung 4.20/5 Insgesamt 10 Bewertungen
Entwickler https://epalmese.github.io
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}