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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Too Many Tabs Too Many Tabs
ID nlkndibnjffddomkegpgkeejdahifpop
官方網址 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"
    ]
}