Close other tabs

Browser extension to close other tabs

ما هو Close other tabs؟

Close other tabs هو إضافة Chrome تم تطويرها بواسطة nunofaria11، والميزة الرئيسية لها هي "Browser extension to close other tabs".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Close other tabs

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

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

                        A simple extension that provides a quick way of closing every other tab in window.                    

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

الاسم Close other tabs Close other tabs
ID cohclepbfkicjacnladehmbiepoaobmm
عنوان URL الرسمي https://chrome.google.com/webstore/detail/cohclepbfkicjacnladehmbiepoaobmm
الوصف Browser extension to close other tabs
حجم الملف 5.51 KB
عدد التثبيتات 33
النسخة الحالية 1.0.2
آخر تحديث 2019-11-08
تاريخ النشر 2019-11-08
تقييم 5.00/5 مجموع تقييمات 2
المطور nunofaria11
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/nunofaria11/close-other-tabs-ext
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close other tabs",
    "version": "1.0.2",
    "description": "Browser extension to close other tabs",
    "author": "Nuno Faria",
    "homepage_url": "https:\/\/github.com\/nunofaria11\/close-other-tabs-ext",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/close_16.png",
            "32": "icons\/close_32.png",
            "64": "icons\/close_64.png"
        }
    },
    "icons": {
        "16": "icons\/close_16.png",
        "32": "icons\/close_32.png",
        "64": "icons\/close_64.png"
    }
}