Too Many Tabs
This extension will notify you when you have more then n tabs open
Too Many Tabsとは何ですか?
Too Many TabsはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension will notify you when you have more then n tabs open」です。
拡張機能のスクリーンショット
Too Many Tabs拡張機能のCRXファイルをダウンロード
Too Many Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Do you tend to open tab after tab after tab end end up with hundreds of them? Not any more. This little nagging extension will remind you when you have more then your desired number (defaults to 9) of tabs open. Get some self control and reduce your CPU load.
拡張機能の基本情報
名前 | |
ID | nlkndibnjffddomkegpgkeejdahifpop |
公式URL | https://chromewebstore.google.com/detail/too-many-tabs/nlkndibnjffddomkegpgkeejdahifpop |
説明 | This extension will notify you when you have more then n tabs open |
ファイルサイズ | 42.02 KB |
インストール数 | 12 |
現在のバージョン | 1.0.1 |
最終更新日 | 2018-08-04 |
公開日 | 2018-08-04 |
開発者 | Unknown |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/fabianmoronzirfas/too-many-tabs |
ヘルプページのURL | https://github.com/fabianmoronzirfas/too-many-tabs/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Too Many Tabs", "short_name": "2ManyTabs", "description": "This extension will notify you when you have more then n tabs open", "version": "1.0.1", "author": "Fabian Mor\u00f3n Zirfas", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "permissions": [ "activeTab", "tabs", "storage", "notifications" ] } |