Collections

Collections

Chromium Extension to keep URLs in a ordered way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Collections",
  "author": "mienaiyami",
  "homepage_url": "https://github.com/mienaiyami/collection-extension-2.0",
  "version": "2.1.0",
  "description": "Chromium Extension to keep URLs in a ordered way.",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html"
  },
  "side_panel": {
    "default_path": "side_panel.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "unlimitedStorage",
    "alarms",
    "sidePanel"
  ],
  "commands": {
    "add-current-tab-to-active-collection": {
      "suggested_key": {
        "default": "Ctrl+Shift+A"
      },
      "description": "Add current tab to active/opened collection in side panel"
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "/icon16.png",
    "32": "/icon32.png",
    "48": "/icon48.png",
    "128": "/icon128.png"
  }
}