Bookmark group tabs

Bookmark in a folder all the tabs of a group

Vad är Bookmark group tabs?

Bookmark group tabs är en Chrome-tillägg utvecklad av thomasmondor01, och dess huvudfunktion är "Bookmark in a folder all the tabs of a group".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Bookmark group tabs-förlängningens CRX-fil

Ladda ner Bookmark group tabs-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

                        If you have used Chrome's grouping feature, you probably experienced wanting to close a group of tabs without losing them. You then had to create a bookmark for each and every one of the tabs in the group. And it probably annoyed you :)

You might know that by right-clicking on a bookmarks folder, you can open all its tabs in a group, which even gets the name of the folder.

This extension allows you to do the opposite : by clicking on the extension's icon (top right corner of your screen), a folder containing the group's tabs is automatically created in your bookmarks bar, with the title of the group as title. To do so, the currently open tab simply needs to be in the desired group when you click on the extension's icon.

You can then quickly move this new folder to the folder or location that suits you!                    

Grundläggande Information om Tillägg

Namn Bookmark group tabs Bookmark group tabs
ID kndieddefnlofcgjljoagkgmnclmkjhh
Officiell webbadress https://chromewebstore.google.com/detail/bookmark-group-tabs/kndieddefnlofcgjljoagkgmnclmkjhh
Beskrivning Bookmark in a folder all the tabs of a group
Filstorlek 6.92 KB
Antal Installationer 102
Aktuell Version 1.1
Senast Uppdaterad 2022-05-26
Publiceringsdatum 2022-05-25
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare thomasmondor01
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark group tabs",
    "version": "1.1",
    "manifest_version": 3,
    "description": "Bookmark in a folder all the tabs of a group",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Click to bookmark the current tab's group"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "tabGroups",
        "bookmarks"
    ]
}