Block Ctrl W

To block ctrl w

ما هو Block Ctrl W؟

Block Ctrl W هو إضافة Chrome تم تطويرها بواسطة Lawrence Lin، والميزة الرئيسية لها هي "To block ctrl w".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Block Ctrl W

قم بتنزيل ملفات الامتداد Block Ctrl W بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        To block Ctrl + w and send notify via post message

#Usage
1. Add Apps to Chrome
2. Open chrome://extensions/shortcuts
3. Find out “Block Ctrl W”
4. Click the Edit button
5. Press Ctrl & W button at the same time                    

معلومات أساسية عن التمديد

الاسم Block Ctrl W Block Ctrl W
ID mhbmkjeobiilhccdahbidgaabnnkpkia
عنوان URL الرسمي https://chromewebstore.google.com/detail/block-ctrl-w/mhbmkjeobiilhccdahbidgaabnnkpkia
الوصف To block ctrl w
حجم الملف 16.26 KB
عدد التثبيتات 748
النسخة الحالية 1.0.3
آخر تحديث 2022-06-26
تاريخ النشر 2022-05-26
تقييم 4.00/5 مجموع تقييمات 2
المطور Lawrence Lin
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block Ctrl W",
    "description": "To block ctrl w",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "block-ctrl-w": {
            "suggested_key": {
                "default": "Ctrl+W"
            },
            "description": "block ctrl w"
        }
    }
}