Tab limit
Limit the number of tabs you can have open at a time
Tab limitとは何ですか?
Tab limitは3arry.devによって開発されたChromeの拡張機能で、その主な機能は「Limit the number of tabs you can have open at a time」です。
拡張機能のスクリーンショット
Tab limit拡張機能のCRXファイルをダウンロード
Tab limit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension allows users to set the maximum number of tabs they want open across their chrome windows at a time. If a user tries to open a tab when he's already at his tab limit, the newly opened tab automatically closes. This extension will be useful to users who find themselves opening more tabs than they need to. It will also helps users get less distracted from the task at hand by finding themselves opening unnecessary tabs. It is kind of a nudge for them to remind themselves that, hey, they need to stay focused on the task at hand. The user can adjust the number of maximum tabs they want open at any point in time.
拡張機能の基本情報
名前 | Tab limit |
ID | djdcpjfmniidpdaalloiipgjphgikejl |
公式URL | https://chromewebstore.google.com/detail/tab-limit/djdcpjfmniidpdaalloiipgjphgikejl |
説明 | Limit the number of tabs you can have open at a time |
ファイルサイズ | 8.98 KB |
インストール数 | 313 |
現在のバージョン | 0.0.0.1 |
最終更新日 | 2022-05-28 |
公開日 | 2022-05-28 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | 3arry.dev |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab limit", "description": "Limit the number of tabs you can have open at a time", "version": "0.0.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logo_128.png", "32": "\/images\/logo_128.png", "48": "\/images\/logo_128.png", "128": "\/images\/logo_128.png" } }, "icons": { "16": "\/images\/logo_128.png", "32": "\/images\/logo_128.png", "48": "\/images\/logo_128.png", "128": "\/images\/logo_128.png" } } |