Bouquet

Arrange all tabs of the currently open window in screen.

Was ist Bouquet?

Bouquet ist eine Chrome-Erweiterung, die von https://heppokofrontend.dev entwickelt wurde, und ihr Hauptmerkmal ist "Arrange all tabs of the currently open window in screen.".

Erweiterungsscreenshots

screenshot
screenshot

Bouquet-Erweiterungs-CRX-Datei herunterladen

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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bouquet Bouquet
ID apcgmjgoniiddekoelefocimfnhnkaah
Offizielle URL https://chromewebstore.google.com/detail/bouquet/apcgmjgoniiddekoelefocimfnhnkaah
Beschreibung Arrange all tabs of the currently open window in screen.
Dateigröße 13.27 KB
Installationsanzahl 48
Aktuelle Version 0.1.1
Letztes Update 2021-10-01
Veröffentlichungsdatum 2021-09-30
Entwickler https://heppokofrontend.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/heppokofrontend/chrome-extension-bouquet
Hilfeseite URL https://github.com/heppokofrontend/chrome-extension-bouquet/issues
URL der Datenschutzrichtlinien-Seite https://gist.github.com/heppokofrontend/0247f1d697df2fd8e798320f403727e8
Unterstützte Sprachen 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"
}