Chromoji - Emojis for Google Chrome
Display emojis in Chrome
什么是Chromoji - Emojis for Google Chrome?
Chromoji - Emojis for Google Chrome是由ahmedsohag3283开发的Chrome扩展程序,该扩展的主要功能是“Display emojis in Chrome”。
扩展截图
下载Chromoji - Emojis for Google Chrome扩展crx文件
下载Chromoji - Emojis for Google Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Show emojis in your browser. Currently supports Twitter, EmojiOne, Apple and Google emojis. Create post facebook and twitter with your emojis
扩展基本信息
名称 | Chromoji - Emojis for Google Chrome |
ID | negakbijaemdgbhklopmghphgaeadmpo |
官方URL | https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo |
简介 | Display emojis in Chrome |
文件大小 | 26.12 MB |
安装次数 | 20,000 |
当前版本 | 1.1.0 |
更新时间 | 2024-01-09 |
上架时间 | 2016-10-26 |
评分 | 3.89/5 共146次评分 |
开发者 | ahmedsohag3283 |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://sites.google.com/view/privacy-policy-of-chromoji/home |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Display emojis in Chrome", "version": "1.1.0", "manifest_version": 3, "name": "Chromoji - Emojis for Google Chrome", "icons": { "16": "data\/images\/icon-16.png", "48": "data\/images\/icon-48.png", "128": "data\/images\/icon-128.png" }, "action": { "default_popup": "popup.html?chrome", "default_title": "Open" }, "options_ui": { "open_in_tab": true, "page": "options.html" }, "background": { "service_worker": "background-wrapper.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.bundle.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage", "declarativeNetRequest" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "data\/images\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |