Bookmark Groups
Save group tabs as bookmarks
Bookmark Groupsとは何ですか?
Bookmark Groupsはgrudadevによって開発されたChromeの拡張機能で、その主な機能は「Save group tabs as bookmarks」です。
拡張機能のスクリーンショット
Bookmark Groups拡張機能のCRXファイルをダウンロード
Bookmark Groups拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Bookmark and restore Chrome's tab groups A Chrome extension which adds to the context menu of tabs the following: * Save all tabs of the current group in a "Saved Groups" folder in the "Bookmarks bar" * Restore a saved group from the "Saved Groups" folder * Copy the bookmarked folder's content (title and URL) to the clipboard The extension code is at https://github.com/avigruda/ChromeBookmarkTabGroups Some points: * The "Saved Groups" folder can be edited manually (add/remove folders) with Chrome's UI * No duplicate group name support, and the URL's from will be added to the same bookmark folder * Existing URL's, aren't saved again in the bookmark folder * Group colors aren't saved The extension icon is taken from http://www.iconbeast.com
拡張機能の基本情報
名前 | Bookmark Groups |
ID | gfaojaacbhaapmmcmgbblhaghhgdnccp |
公式URL | https://chromewebstore.google.com/detail/bookmark-groups/gfaojaacbhaapmmcmgbblhaghhgdnccp |
説明 | Save group tabs as bookmarks |
ファイルサイズ | 10.33 KB |
インストール数 | 766 |
現在のバージョン | 1.0.0 |
最終更新日 | 2021-10-14 |
公開日 | 2021-10-13 |
評価 | 3.50/5 合計 2 レビュー |
開発者 | grudadev |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Groups", "description": "Save group tabs as bookmarks", "version": "1.0.0", "manifest_version": 3, "background": { "service_worker": "main.js" }, "permissions": [ "scripting", "contextMenus", "tabs", "tabGroups", "bookmarks", "clipboardWrite" ], "host_permissions": [ "*:\/\/*\/*" ], "icons": { "16": "\/images\/16.png", "32": "\/images\/32.png", "64": "\/images\/64.png" } } |