Bouquet

Arrange all tabs of the currently open window in screen.

Vad är Bouquet?

Bouquet är en Chrome-tillägg utvecklad av https://heppokofrontend.dev, och dess huvudfunktion är "Arrange all tabs of the currently open window in screen.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Bouquet-förlängningens CRX-fil

Ladda ner Bouquet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Bouquet Bouquet
ID apcgmjgoniiddekoelefocimfnhnkaah
Officiell webbadress https://chromewebstore.google.com/detail/bouquet/apcgmjgoniiddekoelefocimfnhnkaah
Beskrivning Arrange all tabs of the currently open window in screen.
Filstorlek 13.27 KB
Antal Installationer 48
Aktuell Version 0.1.1
Senast Uppdaterad 2021-10-01
Publiceringsdatum 2021-09-30
Utvecklare https://heppokofrontend.dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/heppokofrontend/chrome-extension-bouquet
Hjälpsida URL https://github.com/heppokofrontend/chrome-extension-bouquet/issues
URL till Sekretesspolicy Sidan https://gist.github.com/heppokofrontend/0247f1d697df2fd8e798320f403727e8
Stödda Språk 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"
}