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 擴展基本資訊
| 名稱 | |
| ID | negakbijaemdgbhklopmghphgaeadmpo |
| 官方網址 | 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:\/\/*\/*"
]
}
]
} | |