Close App-launcher Tabs

Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.

Close App-launcher Tabsคืออะไร?

Close App-launcher Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย christopher.x.gerber และคุณลักษณะหลักของมันคือ "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Close App-launcher Tabs

ดาวน์โหลดไฟล์ส่วนขยาย Close App-launcher Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        When a new tab opens, this extension compares that tab's URL to your custom list of URLs or URL parts. If there's a match, this extension will automatically close that tab after a small custom delay (default: 5 seconds).

Joining a lot of Zoom meetings from Google Calendar? Is Zoom leaving a lot of useless tabs open in Chrome? Linear? Other apps? Forget about it. 

Ease your cognitive load. Keep your Chrome space clean.

Issues? Report them here: https://github.com/gerbus/close-app-launcher-tabs/issues

Cheers! 
Christopher X Gerber                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Close App-launcher Tabs Close App-launcher Tabs
ID nflgfijhhdgfaihflbieofaegdiphbej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/close-app-launcher-tabs/nflgfijhhdgfaihflbieofaegdiphbej
คำอธิบาย Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.
ขนาดไฟล์ 10.69 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-04-04
วันที่เผยแพร่ 2022-03-21
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา christopher.x.gerber
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gerbus/close-app-launcher-tabs
URL หน้าช่วยเหลือ https://github.com/gerbus/close-app-launcher-tabs/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close App-launcher Tabs",
    "description": "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "close-app-launcher-tabs-16.png",
            "32": "close-app-launcher-tabs-32.png",
            "48": "close-app-launcher-tabs-48.png",
            "128": "close-app-launcher-tabs-128.png"
        }
    },
    "icons": {
        "16": "close-app-launcher-tabs-16.png",
        "32": "close-app-launcher-tabs-32.png",
        "48": "close-app-launcher-tabs-48.png",
        "128": "close-app-launcher-tabs-128.png"
    }
}