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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}