Active tabs

Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.

Was ist Active tabs?

Active tabs ist eine Chrome-Erweiterung, die von https://shaunsational.github.io entwickelt wurde, und ihr Hauptmerkmal ist "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.".

Erweiterungsscreenshots

screenshot

Active tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Active 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

                        Shows a count of total active tabs across all windows on the browser icon.  When clicked a searchable list of all the tabs appears broken down by window (each window is collapsible).  Clicking any tab will immediately focus that tab, even if it is minimized.  You can also close individual tabs or entire windows from the list.

You have to "Allow in incognito" on the manage extensions page to show incognito tabs, it will not show them by default.

Updates - 
1.2 - now adds a background to tabs playing audio, also searchable by using the keyword "audio"
1.3 - added keyboard shortcuts (open help by hitting ?), prefixed keywords with _ to help separate further.

@shaunsational                    

Grundlegende Informationen zur Erweiterung

Name Active tabs Active tabs
ID pbihheplocihoglaokfdcjadbjlhijgb
Offizielle URL https://chromewebstore.google.com/detail/active-tabs/pbihheplocihoglaokfdcjadbjlhijgb
Beschreibung Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.
Dateigröße 50.87 KB
Installationsanzahl 510
Aktuelle Version 1.3.1
Letztes Update 2018-11-06
Veröffentlichungsdatum 2018-11-06
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler https://shaunsational.github.io
Zahlungsart free
Erweiterungswebsite https://shaunsational.github.io/extensions#active-tabs
Hilfeseite URL https://github.com/shaunsational/chrome-ext-ActiveTabs/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Active tabs",
    "description": "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.",
    "version": "1.3.1",
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon.png",
            "48": "assets\/icon_48.png"
        },
        "default_title": "Active tabs",
        "default_popup": "popup.htm"
    },
    "permissions": [
        "*:\/\/*\/",
        "chrome:\/\/favicon\/",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}