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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}