Bouquet

Arrange all tabs of the currently open window in screen.

Co to jest Bouquet?

Bouquet to rozszerzenie Chrome opracowane przez https://heppokofrontend.dev, a jego główną funkcją jest „Arrange all tabs of the currently open window in screen.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Bouquet

Pobierz pliki rozszerzeń Bouquet w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bouquet Bouquet
ID apcgmjgoniiddekoelefocimfnhnkaah
Oficjalny URL https://chromewebstore.google.com/detail/bouquet/apcgmjgoniiddekoelefocimfnhnkaah
Opis Arrange all tabs of the currently open window in screen.
Rozmiar pliku 13.27 KB
Liczba instalacji 48
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2021-10-01
Data Publikacji 2021-09-30
Deweloper https://heppokofrontend.dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/heppokofrontend/chrome-extension-bouquet
Adres URL Strony Pomocy https://github.com/heppokofrontend/chrome-extension-bouquet/issues
Adres URL Strony Polityki Prywatności https://gist.github.com/heppokofrontend/0247f1d697df2fd8e798320f403727e8
Obsługiwane Języki 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"
}