Too Many Tabs

This extension will notify you when you have more then n tabs open

Was ist Too Many Tabs?

Too Many Tabs ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension will notify you when you have more then n tabs open".

Erweiterungsscreenshots

screenshot

Too Many Tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Too Many Tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Too Many Tabs Too Many Tabs
ID nlkndibnjffddomkegpgkeejdahifpop
Offizielle URL https://chromewebstore.google.com/detail/too-many-tabs/nlkndibnjffddomkegpgkeejdahifpop
Beschreibung This extension will notify you when you have more then n tabs open
Dateigröße 42.02 KB
Installationsanzahl 12
Aktuelle Version 1.0.1
Letztes Update 2018-08-04
Veröffentlichungsdatum 2018-08-04
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/fabianmoronzirfas/too-many-tabs
Hilfeseite URL https://github.com/fabianmoronzirfas/too-many-tabs/issues
Unterstützte Sprachen 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"
    ]
}