Bouquet

Arrange all tabs of the currently open window in screen.

Что такое Bouquet?

Bouquet - это расширение Chrome, разработанное https://heppokofrontend.dev, и его основная функция - "Arrange all tabs of the currently open window in screen.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Bouquet

Скачайте файлы расширений Bouquet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Bouquet Bouquet
ID apcgmjgoniiddekoelefocimfnhnkaah
Официальный URL https://chromewebstore.google.com/detail/bouquet/apcgmjgoniiddekoelefocimfnhnkaah
Описание Arrange all tabs of the currently open window in screen.
Размер файла 13.27 KB
Количество установок 48
Текущая Версия 0.1.1
Последнее Обновление 2021-10-01
Дата публикации 2021-09-30
Разработчик https://heppokofrontend.dev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/heppokofrontend/chrome-extension-bouquet
URL страницы помощи https://github.com/heppokofrontend/chrome-extension-bouquet/issues
URL страницы политики конфиденциальности https://gist.github.com/heppokofrontend/0247f1d697df2fd8e798320f403727e8
Поддерживаемые языки 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"
}