New Collections

Save and restore tabs

什么是New Collections?

New Collections是由Alex Logashov开发的Chrome扩展程序,该扩展的主要功能是“Save and restore tabs”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载New Collections扩展crx文件

下载New Collections扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Quickly save and restore open tabs without creating new bookmark entries. It doesn't use any online services or connections except Chrome's default storage sync service to optionally sync data between browsers. Import and export can be done by saving and loading generated JSON file.

Extension can be used as a popup or New Tab page. New Tab page can optionally display top sites and open tabs from synced devices.

Features:
- Save and restore tabs
- Import/export saved tabs using JSON file
- Automatic theme adjustment based on browser colors
- Remove individual tabs or entire tab group
- Edit tab title and URL
- Search saved tabs and open tabs from synced devices
- New tabs can be added to existing tab groups
- Display top sites on New Tab page
- Display synced tabs from other devices on New Tab page                    

扩展基本信息

名称 New Collections New Collections
ID lfchffgphpkiobhgmpbdminmdieacaje
官方URL https://chromewebstore.google.com/detail/new-collections/lfchffgphpkiobhgmpbdminmdieacaje
简介 Save and restore tabs
文件大小 1002 KB
安装次数 115
当前版本 1.3.0
更新时间 2023-12-07
上架时间 2023-02-28
开发者 Alex Logashov
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/logashoff/new-collections
帮助页面URL https://github.com/logashoff/new-collections/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Collections",
    "description": "Save and restore tabs",
    "version": "1.3.0",
    "minimum_chrome_version": "104",
    "manifest_version": 3,
    "offline_enabled": true,
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "action": {
        "default_popup": "index.html#\/popup"
    },
    "background": {
        "service_worker": "background.js"
    },
    "chrome_url_overrides": {
        "newtab": "index.html#\/home"
    },
    "options_ui": {
        "page": "index.html#\/options"
    },
    "permissions": [
        "sessions",
        "topSites",
        "storage",
        "tabs",
        "favicon"
    ]
}