New Collections

Save and restore tabs

New Collections란 무엇입니까?

New Collections은(는) Alex Logashov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save and restore tabs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

New Collections 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}