Rexmoji

A simple extension for making your video calls less boring by adding capability of sending emojis to everyone.

Rexmojiคืออะไร?

Rexmoji เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 010pixel และคุณลักษณะหลักของมันคือ "A simple extension for making your video calls less boring by adding capability of sending emojis to everyone."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rexmoji

ดาวน์โหลดไฟล์ส่วนขยาย Rexmoji ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple extension for making your video calls less boring by adding capability of sending emojis to everyone.

Always wanted to clap (👏) for someone? Or say thumb Up (👍). Now you can do all you want.

FEATURES:
- Send emoji to everyone

TROUBLESHOOTING:
- In case the extension doesn't work, try again after refreshing the page

WORKS ON:
- Google Meet
- Zoom

Widget Designer: Estelle Lee (https://estxlmy.myportfolio.com/)
Logo Designer: Yan Hao (https://artofyanhao.com/)

Support this extension: https://donorbox.org/to-sustain-building-google-chrome-extensions

v.1.0.0: (2020/05/08)
- Initial upload

v.1.0.1 (2020/05/10)
- Code refactoring

v.1.0.2 (2020/05/15)
- Solved issue of emoji not loading when coming from google meet home page

v.1.0.3 (2020/05/18)
- Solved issue of analytics error where events were triggered without any pageview initiated

v.1.1.0 (2020/06/18)
- Added Custom Emojis selection

v.1.1.1 (2020/08/28)
- Solved: Rexmoji not being able to load

v.1.1.2 (2020/10/17)
- Solved: User's name and avatar not loading

v.1.1.3 (2021/04/16)
- Solved: Rexmoji not loading on certain zoom calls

v.1.1.4 (2021/06/01)
- Solved: User's name and avatar not loading

v.1.2.0 (2022/07/10)
- Solved: Rexmoji widget not loading on Google Meet

v.1.3.0 (2022/07/11)
- Added: support for i18n

v.1.3.1 (2023/02/21)
- Added: install, update, uninstall pages                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Rexmoji Rexmoji
ID nbecjgkalhdijjiicijfnnnmdcamdmif
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rexmoji/nbecjgkalhdijjiicijfnnnmdcamdmif
คำอธิบาย A simple extension for making your video calls less boring by adding capability of sending emojis to everyone.
ขนาดไฟล์ 1.37 MB
จำนวนการติดตั้ง 181
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2023-02-22
วันที่เผยแพร่ 2020-06-17
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา 010pixel
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.010pixel.com
URL หน้าช่วยเหลือ http://www.010pixel.com
URL หน้านโยบายความเป็นส่วนตัว https://privacy.010pixel.com/chrome
ภาษาที่รองรับ en,hi
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDesc__",
    "version": "1.3.1",
    "author": "010 Pixel",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/**-**-**",
        "https:\/\/*.zoom.us\/*"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_appBrowserActionDefaultTitle__"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/meet.google.com\/**-**-**",
                "https:\/\/*.zoom.us\/*"
            ],
            "js": [
                "js\/_libs.js",
                "js\/_myapp.js"
            ],
            "css": [
                "css\/styles.css",
                "css\/emojis.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon19.png",
        "32": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icons\/*",
                "images\/emoji\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}