Anilist Emoji Extension
This extension adds a emoji select box to anilist text areas
Co to jest Anilist Emoji Extension?
Anilist Emoji Extension to rozszerzenie Chrome opracowane przez guilhermen2k, a jego główną funkcją jest „This extension adds a emoji select box to anilist text areas”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Anilist Emoji Extension
Pobierz pliki rozszerzeń Anilist Emoji Extension 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
Anillist.co does not support unicode emojis by default, this extension adds an emoji select box to each anilist text areas of every page. Instead of inserting the unicode it adds the parsed html code that anilist undestands
Podstawowe informacje o rozszerzeniu
Nazwa | Anilist Emoji Extension |
ID | jlcoboibplamhedogfhaeklnebbjakhm |
Oficjalny URL | https://chromewebstore.google.com/detail/anilist-emoji-extension/jlcoboibplamhedogfhaeklnebbjakhm |
Opis | This extension adds a emoji select box to anilist text areas |
Rozmiar pliku | 52.17 KB |
Liczba instalacji | 21 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2023-01-29 |
Data Publikacji | 2023-01-23 |
Deweloper | guilhermen2k |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Anilist Emoji Extension", "description": "This extension adds a emoji select box to anilist text areas", "version": "1.1", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "src\/index.js" ], "css": [ "src\/index.css" ], "matches": [ "https:\/\/anilist.co\/*" ] } ] } |