Auto Closer

An extension that just close the tabs you don't need.

ما هو Auto Closer؟

Auto Closer هو إضافة Chrome تم تطويرها بواسطة Mt.blue81، والميزة الرئيسية لها هي "An extension that just close the tabs you don't need.".

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

screenshot

تحميل ملف CRX للإضافة Auto Closer

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

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

                        1. Add your site URL. (as a regular expression) option-image
2. Then open your site.
3. Site will close in a second.

It is mainly intended for closing tabs that are no longer needed when opening applications via a browser.
The delay to close can be changed in the extension option.                    

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

الاسم Auto Closer Auto Closer
ID ligkadlbclfnnfgjmeplpebnjdgcembn
عنوان URL الرسمي https://chromewebstore.google.com/detail/auto-closer/ligkadlbclfnnfgjmeplpebnjdgcembn
الوصف An extension that just close the tabs you don't need.
حجم الملف 13.68 KB
عدد التثبيتات 579
النسخة الحالية 2.1.0
آخر تحديث 2023-10-30
تاريخ النشر 2021-01-13
تقييم 4.67/5 مجموع تقييمات 3
المطور Mt.blue81
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/MtBlue81/auto-closer
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Closer",
    "version": "2.1.0",
    "description": "An extension that just close the tabs you don't need.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}