Tabs saver

You could save opened tabs, if you may need them in future

Tabs saver là gì?

Tabs saver là một tiện ích mở rộng Chrome được phát triển bởi sujeet-adam, và tính năng chính của nó là "You could save opened tabs, if you may need them in future".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Tabs saver 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

                        You could save opened tabs, if you may need them in future

With that extension you could save all opened tabs in current window. This is realy good, when you often need to open many tabs on diferent subjects.

Features: 
1. Ability to save opened tabs with unique name and reopening them in futher
2. Ability to export all tabs group to Json Blob and share link to social networks: Twitter, LinkedIn and Facebook(auto post api post)
3. Ability to open different tabs in previously saved group
4. Ability to delete tabs group or separate tab in group
5. Ability to add new tab to existing tabs group
6. Ability to rename existing tabs group
7. Ability to Update existing tabs group with the current open tabs
8. Ability to Export and import all your saved tabs groups to local disk

Hints:

Use shift+click if you wanna open tabs group in new window when default mode is used.
Use shift+click if you wanna open tabs group in current window when "new window" mode is used.

If you will click on gear button, then you will get group control menu, where:

Cross icon - deleting group
Plus icon - adding current selected tab in window to the group
Disk icon - updating group with the current opened tabs in window
Select cursor icon - rename group

Use ctrl+click or middle mouse button if you do not need close already opened tabs and open one of saved tabs group.
You may use "enter" key when you rename, or save tabs group.

Bug report mail: [email protected]                    

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

Tên Tabs saver Tabs saver
ID kmabfaomlcjlnplkoflgenkmmpilmead
URL Chính Thức https://chromewebstore.google.com/detail/tabs-saver/kmabfaomlcjlnplkoflgenkmmpilmead
Mô tả You could save opened tabs, if you may need them in future
Kích Thước Tệp 184 KB
Số Lần Cài Đặt 30,942
Phiên Bản Hiện Tại 2.5.6
Cập Nhật Lần Cuối 2024-01-31
Ngày Phát Hành 2014-06-26
Đánh Giá 3.64/5 Tổng số 313 Đánh Giá
Nhà Phát Triển sujeet-adam
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://tabsmaster.freehosting.com/privacy.html
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/sujeet-saket/home
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tabs saver",
    "description": "You could save opened tabs, if you may need them in future",
    "version": "2.5.6",
    "icons": {
        "128": "icons\/logo_128X128.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/jsonblob.com\/*"
    ],
    "background": {
        "type": "module",
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "48": "\/icons\/logo_48X48.png"
        },
        "default_title": "Tab saver",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/jsonblob.com\/*",
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content-scripts\/content.js"
            ]
        }
    ]
}