Close Other Tabs

Close all OTHER tabs!

ما هو Close Other Tabs؟

Close Other Tabs هو إضافة Chrome تم تطويرها بواسطة Delaney Garcia، والميزة الرئيسية لها هي "Close all OTHER tabs!".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Close Other Tabs

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

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

                        When chrome phased out the 'close other tabs' functionality, I was bummed... so we made this extension which re-enables that functionality.

When you click the extension icon, it should close all other tabs you have open. It will not close the active tab, nor will it close pinned tabs.

I hope this saves you time like it did for us!                    

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

الاسم Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
عنوان URL الرسمي https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
الوصف Close all OTHER tabs!
حجم الملف 17.36 KB
عدد التثبيتات 46
النسخة الحالية 1.02
آخر تحديث 2019-11-18
تاريخ النشر 2019-11-15
تقييم 5.00/5 مجموع تقييمات 2
المطور Delaney Garcia
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Other Tabs",
    "description": "Close all OTHER tabs!",
    "version": "1.02",
    "homepage_url": "https:\/\/foobar.com",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Close OTHER tabs!",
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}