Flowbar - Chrome Tab Manager

Multi-functional browser organizer & note taking tool.

Cos'è Flowbar - Chrome Tab Manager?

Flowbar - Chrome Tab Manager è un'estensione di Chrome sviluppata da https://flowbar.co, e la sua funzione principale è "Multi-functional browser organizer & note taking tool.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Flowbar - Chrome Tab Manager

Scarica i file di estensione Flowbar - Chrome 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

                        - Save all open tabs instantly to remove clutter and free up memory.
- Create multiple groups to save most important links for work, hobbies, and any other links that you open every day.
- Save individual tabs into existing groups or create a new one.
- Move your tabs between groups to re-organize.
- Sync all your tabs between different computers by logging in with your Google account.
- Search saved tabs to quickly find what you're looking for.
- Import your Tabs from OneTab extension easily.
- Autosave open tabs

https://flowbar.co                    

Informazioni di Base sull'Estensione

Nome Flowbar - Chrome Tab Manager Flowbar - Chrome Tab Manager
ID chidlojljmmcgpjapdbkedbbilnjoddg
URL Ufficiale https://chromewebstore.google.com/detail/flowbar-chrome-tab-manage/chidlojljmmcgpjapdbkedbbilnjoddg
Descrizione Multi-functional browser organizer & note taking tool.
Dimensione del File 27.94 KB
Conteggio Installazioni 3,328
Versione Corrente 2023.5.8
Ultimo Aggiornamento 2023-05-16
Data di Pubblicazione 2020-05-14
Valutazione 3.82/5 Totale 108 Valutazioni
Sviluppatore https://flowbar.co
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://flowbar.co
URL della Pagina di Aiuto https://flowbar.co
URL della Pagina della Politica sulla Privacy http://flowbar.co/privacy-policy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flowbar - Chrome Tab Manager",
    "description": "Multi-functional browser organizer & note taking tool.",
    "version": "2023.5.8",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        }
    },
    "commands": {
        "save-all": {
            "suggested_key": {
                "default": "Alt+V",
                "mac": "Alt+V",
                "chromeos": "Alt+V",
                "linux": "Alt+V"
            },
            "description": "Save all tabs to general"
        },
        "open-dashboard": {
            "suggested_key": {
                "default": "Alt+B",
                "mac": "Alt+B",
                "chromeos": "Alt+B",
                "linux": "Alt+B"
            },
            "description": "Open Dashboard"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:4100\/*",
            "https:\/\/dev-v2app.flowbar.co\/*",
            "https:\/\/app-v2.flowbar.co\/*"
        ]
    }
}