Tabs auto close

The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…

Tabs auto close란 무엇입니까?

Tabs auto close은(는) smeleshkin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tabs auto close 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The extension closes tabs matching regular expressions automatically after a timeout.
Such as:
https://yandex.zoom.us/j/*
https://t.me/joinchat/*

And others at your discretion

Example regular expression for close zoom:
https:\/\/(.)*\.zoom.us\/j\/(.)*                    

확장 프로그램 기본 정보

이름 Tabs auto close Tabs auto close
ID mbodbfopnnihkmkhcojmieknngpcalhf
공식 URL https://chromewebstore.google.com/detail/tabs-auto-close/mbodbfopnnihkmkhcojmieknngpcalhf
설명 The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…
파일 크기 87.88 KB
설치 횟수 865
현재 버전 1.0.0
최근 업데이트 2022-10-31
출시 날짜 2022-10-31
평점 4.80/5 총 5 개의 평점
개발자 smeleshkin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/smeleshkin/tabs-auto-closer
도움말 페이지 URL https://t.me/smeleshkin
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tabs auto close",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/broom16.png",
        "48": "icons\/broom48.png",
        "128": "icons\/broom128.png"
    }
}