Bouquet

Arrange all tabs of the currently open window in screen.

Apa itu Bouquet?

Bouquet adalah ekstensi Chrome yang dikembangkan oleh https://heppokofrontend.dev, dan fitur utamanya adalah "Arrange all tabs of the currently open window in screen.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Bouquet

Unduh file ekstensi Bouquet dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Bouquet Bouquet
ID apcgmjgoniiddekoelefocimfnhnkaah
URL Resmi https://chromewebstore.google.com/detail/bouquet/apcgmjgoniiddekoelefocimfnhnkaah
Deskripsi Arrange all tabs of the currently open window in screen.
Ukuran File 13.27 KB
Jumlah Instalasi 48
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2021-10-01
Tanggal Publikasi 2021-09-30
Pengembang https://heppokofrontend.dev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/heppokofrontend/chrome-extension-bouquet
URL Halaman Bantuan https://github.com/heppokofrontend/chrome-extension-bouquet/issues
URL Halaman Kebijakan Privasi https://gist.github.com/heppokofrontend/0247f1d697df2fd8e798320f403727e8
Bahasa yang Didukung 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"
}