Messaging App Stealth Mode

Stealth mode for a certain messaging app

Messaging App Stealth Modeคืออะไร?

Messaging App Stealth Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oryan Moshe และคุณลักษณะหลักของมันคือ "Stealth mode for a certain messaging app"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Messaging App Stealth Mode

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

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

                        A stealth mode for certain messaging app.                    

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

ชื่อ Messaging App Stealth Mode Messaging App Stealth Mode
ID neahcibhlbdhnfdbnjfjpfgnceaegemm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm
คำอธิบาย Stealth mode for a certain messaging app
ขนาดไฟล์ 38.71 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2019-10-15
วันที่เผยแพร่ 2019-10-15
ผู้พัฒนา Oryan Moshe
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.0",
    "manifest_version": 2,
    "name": "Messaging App Stealth Mode",
    "description": "Stealth mode for a certain messaging app",
    "author": "Oryan Moshe",
    "permissions": [
        "activeTab",
        "*:\/\/web.whatsapp.com\/*",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "48": "icons8-northern-lights-48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons8-northern-lights-48-mono.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ],
            "css": [
                "stealthmode.css"
            ],
            "js": [
                "jquery-3.3.1.min.js"
            ]
        }
    ]
}