Anilist Emoji Extension
This extension adds a emoji select box to anilist text areas
什么是Anilist Emoji Extension?
Anilist Emoji Extension是由guilhermen2k开发的Chrome扩展程序,该扩展的主要功能是“This extension adds a emoji select box to anilist text areas”。
扩展截图
下载Anilist Emoji Extension扩展crx文件
下载Anilist Emoji Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Anilist Emoji Extension |
ID | jlcoboibplamhedogfhaeklnebbjakhm |
官方URL | https://chromewebstore.google.com/detail/anilist-emoji-extension/jlcoboibplamhedogfhaeklnebbjakhm |
简介 | This extension adds a emoji select box to anilist text areas |
文件大小 | 52.17 KB |
安装次数 | 21 |
当前版本 | 1.1 |
更新时间 | 2023-01-29 |
上架时间 | 2023-01-23 |
开发者 | guilhermen2k |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/*" ] } ] } |