Bouquet

Arrange all tabs of the currently open window in screen.

Cos'è Bouquet?

Bouquet è un'estensione di Chrome sviluppata da https://heppokofrontend.dev, e la sua funzione principale è "Arrange all tabs of the currently open window in screen.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bouquet

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

                        This is useful when you want to check multiple pieces of page in a row.

If the target page has a video player, you can operate them simultaneously.

* If you are user of macOS, please maximize the window before pressing the "Run" button.                    

Informazioni di Base sull'Estensione

Nome Bouquet Bouquet
ID apcgmjgoniiddekoelefocimfnhnkaah
URL Ufficiale https://chromewebstore.google.com/detail/bouquet/apcgmjgoniiddekoelefocimfnhnkaah
Descrizione Arrange all tabs of the currently open window in screen.
Dimensione del File 13.27 KB
Conteggio Installazioni 48
Versione Corrente 0.1.1
Ultimo Aggiornamento 2021-10-01
Data di Pubblicazione 2021-09-30
Sviluppatore https://heppokofrontend.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/heppokofrontend/chrome-extension-bouquet
URL della Pagina di Aiuto https://github.com/heppokofrontend/chrome-extension-bouquet/issues
URL della Pagina della Politica sulla Privacy https://gist.github.com/heppokofrontend/0247f1d697df2fd8e798320f403727e8
Lingue Supportate en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "version": "0.1.1",
    "description": "__MSG_extDesc__",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en"
}