New Collections
Save and restore tabs
什麼是New Collections?
New Collections是由Alex Logashov開發的Chrome擴展程式,該擴展的主要功能是“Save and restore tabs”。
擴展截圖
下載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 |
ID | lfchffgphpkiobhgmpbdminmdieacaje |
官方網址 | 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" ] } |