Tabs aside

Classic Microsoft Edge "Tabs Aside" feature

Tabs aside là gì?

Tabs aside là một tiện ích mở rộng Chrome được phát triển bởi https://xfox111.net, và tính năng chính của nó là "Classic Microsoft Edge "Tabs Aside" feature".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tabs aside

Tải xuống các tệp mở rộng Tabs aside dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Classic Microsoft Edge "Tabs Aside" feature for Chromium-based browsers
If you’re like me, you often find yourself with a bunch of open tabs. You’d like to get those tabs out of the way sometimes, but they’re maybe not worth saving as actual bookmarks.

In the Edge browser, Microsoft has introduced a new feature called "Tabs aside" (or Tab groups) which lets you set tabs aside in a sort of temporary workspace so that you can call them back up later.

Unfortunately, in new Chromium-based Microsoft Edge, the devs decided not to implement this must-have-feature. So, I've decided to create a browser extension which replicates this awesome feature in Chromium-based browsers

## Features
- Familiar UI inherited from legacy Microsoft Edge with some improvements
- Auto Dark mode*
- Now you can restore one tab from collection without removing
- Convenient hotkeys
- Ability to load restored tabs on your demand

## Hey, It's open-source software!
If you know how to improve this extension you can check its GitHub Repository at https://github.com/xfox111/ChromiumTabsAside
Check out release changelog on https://github.com/xfox111/chromiumtabsaside/releases/latest

*Color mode of the extension depends on the color mode of your operating system                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tabs aside Tabs aside
ID mgmjbodjgijnebfgohlnjkegdpbdjgin
URL Chính Thức https://chromewebstore.google.com/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin
Mô tả Classic Microsoft Edge "Tabs Aside" feature
Kích Thước Tệp 1.89 MB
Số Lần Cài Đặt 4,424
Phiên Bản Hiện Tại 2.0.5
Cập Nhật Lần Cuối 2023-08-25
Ngày Phát Hành 2020-06-27
Đánh Giá 4.48/5 Tổng số 48 Đánh Giá
Nhà Phát Triển https://xfox111.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/xfox111/ChromiumTabsAside
URL Trang Trợ Giúp https://xfox111.net/Contacts
Ngôn Ngữ Được Hỗ Trợ en,es,it,pl,pt-BR,ru,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "2.0.5",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "author": "__MSG_author__",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "bookmarks",
        "unlimitedStorage",
        "storage",
        "",
        "contextMenus"
    ],
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "32": "icons\/icon-32.png",
        "16": "icons\/icon-16.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon-32.png"
    },
    "web_accessible_resources": [
        "*"
    ],
    "background": {
        "scripts": [
            "js\/lib\/lzutf8.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "set-aside": {
            "description": "__MSG_setAside__",
            "suggested_key": {
                "default": "Alt+Left",
                "mac": "MacCtrl+T"
            }
        },
        "toggle-pane": {
            "description": "__MSG_togglePaneContext__",
            "suggested_key": {
                "default": "Alt+P",
                "mac": "Command+Shift+P"
            }
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "58.0"
        }
    }
}