Tablockify

Prevent your tab to be closed or reloaded

ما هو Tablockify؟

Tablockify هو إضافة Chrome تم تطويرها بواسطة Erik Häyry، والميزة الرئيسية لها هي "Prevent your tab to be closed or reloaded".

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

screenshot

تحميل ملف CRX للإضافة Tablockify

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

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

                        Prevent a tab from being closed closed or reloaded. Just right click anywhere on the page and select "Lock tab" from the menu. Also useful when debugging javascript and want to prevent unwanted reloads.                    

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

الاسم Tablockify Tablockify
ID ljoigkihbbkhheipboecckncfpljepbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/tablockify/ljoigkihbbkhheipboecckncfpljepbm
الوصف Prevent your tab to be closed or reloaded
حجم الملف 19.01 KB
عدد التثبيتات 201
النسخة الحالية 4
آخر تحديث 2014-11-10
تاريخ النشر 2014-11-10
تقييم 2.50/5 مجموع تقييمات 16
المطور Erik Häyry
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tablockify",
    "version": "4",
    "description": "Prevent your tab to be closed or reloaded",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lock.js"
            ]
        }
    ],
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "tabs",
        "contextMenus"
    ]
}