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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |