New Collections

New Collections

Save and restore tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Collections",
  "description": "Save and restore tabs",
  "version": "1.5.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#/new-tab"
  },
  "options_ui": {
    "page": "index.html#/options"
  },
  "permissions": [
    "sessions",
    "topSites",
    "storage",
    "tabs",
    "favicon"
  ]
}