Bouquet

Arrange all tabs of the currently open window in screen.

什麼是Bouquet?

Bouquet是由https://heppokofrontend.dev開發的Chrome擴展程式,該擴展的主要功能是“Arrange all tabs of the currently open window in screen.”。

擴展截圖

screenshot
screenshot

下載Bouquet擴展crx文件

下載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
官方網址 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"
}