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"
}