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是由christopher.x.gerber开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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 |
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" } } |