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文件

下载Tabs auto close扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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