Protect message

This extension allow users to prevent peeking messages on Messenger and Facebook by blurring or reverse mirror effect.

Protect messageคืออะไร?

Protect message เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kakalot และคุณลักษณะหลักของมันคือ "This extension allow users to prevent peeking messages on Messenger and Facebook by blurring or reverse mirror effect."

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

screenshot

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

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

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

                        This extension will allow users to prevent peeking messages on Messenger and Facebook by blurring messages or creating a reverse mirror message effect.

The extension will allow to automatically change the message with two optional effects: blur and reflection.
Users will be able to see the message with settings when hovering over the message window or line of messages.
Our application does not collect any user information, all changes are handled by the chrome browser.
Video on how to use the gadget on youtube: https://studio.youtube.com/video/IOj5q52toYo

*** CHANGE LOG ***
+ 22-07-2020
- Fix issue with new theme Facebook.
+ 22-02-2020
- Update dataset css selector
+ 12-02-2020
- Fix issue hover emotion, drop-up menu in messenger.com
+ 15-01-2020:
- Add permission tabs.
- Refactoring extension.
- Remove update selector dataset(from github repo).
- Remove options hover.
- Add donate link.
+ 23-12-2019:
- Add domain https://www.facebook.com/messages 
- Add contexts menu.                    

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

ชื่อ Protect message Protect message
ID fgnnjldhcpkgffephopliioangockjgk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/protect-message/fgnnjldhcpkgffephopliioangockjgk
คำอธิบาย This extension allow users to prevent peeking messages on Messenger and Facebook by blurring or reverse mirror effect.
ขนาดไฟล์ 46.05 KB
จำนวนการติดตั้ง 1,357
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2020-07-22
วันที่เผยแพร่ 2020-02-22
คะแนน 4.65/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา Kakalot
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/lozthiensu/bMessenger.git
URL หน้าช่วยเหลือ https://www.facebook.com/hafquangbaox
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Protect message",
    "short_name": "bMessage",
    "version": "2.0.0",
    "description": "This extension allow users to prevent peeking messages on Messenger and Facebook by blurring or reverse mirror effect.",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Protect message setting",
        "default_popup": "src\/popup.html"
    },
    "author": "https:\/\/www.facebook.com\/hafquangbaox",
    "homepage_url": "https:\/\/github.com\/lozthiensu\/bMessenger",
    "icons": {
        "16": "icons\/16.png",
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.fb.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.m.me\/*",
                "*:\/\/*.messenger.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "*:\/\/*.fb.com\/*",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.m.me\/*",
        "*:\/\/*.messenger.com\/*"
    ]
}