Chromoji - Emojis for Google Chrome
Display emojis in Chrome
Chromoji - Emojis for Google Chromeคืออะไร?
Chromoji - Emojis for Google Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ahmedsohag3283 และคุณลักษณะหลักของมันคือ "Display emojis in Chrome"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chromoji - Emojis for Google Chrome
ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*" ] } ] } |