Tab Manager

A tool for managing and organizing tabs

Cos'è Tab Manager?

Tab Manager è un'estensione di Chrome sviluppata da domsupamoe, e la sua funzione principale è "A tool for managing and organizing tabs".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tab Manager

Scarica i file di estensione Tab Manager in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The philosophy behind it is to manage all the tabs within the current window. It is often the case that there should NOT be more than 2 or 3 browser windows opened. Thus, the extension itself has a limited or no support for managing multi-window tabs.

********************

The features included in this extension:
- Actions for merge, sort, and kill tabs
- Toggle to detect duplicate tabs and close previous opened tabs
- Search and filter tabs from the input box
- Drag and drop tab item will move tab to different position
- Click on the tab item will redirect to web page
- Click on red x will close the current tab item
- Hover and press x will close the current tab item

********************

Source Code and Documentation
https://github.com/domsupamoe/tab-manager

********************

Changelog
https://github.com/domsupamoe/tab-manager/blob/master/CHANGELOG.md

********************

Please feel free to create issues and PRs to contribute to the project.                    

Informazioni di Base sull'Estensione

Nome Tab Manager Tab Manager
ID pjgghjfckgpmghploaenddaemikldhlc
URL Ufficiale https://chromewebstore.google.com/detail/tab-manager/pjgghjfckgpmghploaenddaemikldhlc
Descrizione A tool for managing and organizing tabs
Dimensione del File 93.41 KB
Conteggio Installazioni 30
Versione Corrente 1.9.4
Ultimo Aggiornamento 2020-08-02
Data di Pubblicazione 2020-07-29
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore domsupamoe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/domsupamoe/tab-manager
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Manager",
    "version": "1.9.4",
    "description": "A tool for managing and organizing tabs",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/tab_active16.png",
            "32": "images\/tab_active32.png",
            "48": "images\/tab_active48.png",
            "128": "images\/tab_active128.png"
        }
    },
    "icons": {
        "16": "images\/tab_active16.png",
        "32": "images\/tab_active32.png",
        "48": "images\/tab_active48.png",
        "128": "images\/tab_active128.png"
    },
    "manifest_version": 2
}