Stacklist

Stacklist saves websites as cards with tags & notes for easy organization and quick access to bookmarks.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stacklist",
  "description": "Stacklist saves websites as cards with tags & notes for easy organization and quick access to bookmarks.",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "assets/logo16.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Stacklist",
    "default_icon": "assets/logo128.png"
  },
  "side_panel": {
    "default_path": "popup.html#sidepanel",
    "default_title": "Stacklist",
    "default_icon": "assets/logo128.png"
  },
  "permissions": [
    "activeTab",
    "identity",
    "storage",
    "sidePanel",
    "tabs",
    "webRequest"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "contentStyle.css"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": false,
      "run_at": "document_idle"
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqAnEyAFv4VOFJjgWPAgFMZ6Bei/kCJbFfXccG/bs9SKtdKelF5PfQGJBf5DffanP5B4GjCOTR3XQ5ybLhNTnfn3tVuezo8KCnJQXcBNdTNrNDIkUGOcPh5TK5i42L7qnb6KvkcSZUFDyqi+fDkLrG6koRqa8TPlUrixu30korvImqjje79mu8vt05mlhQl5nP55lsLjkdGxcwDlmM/OhvpNlwzir015bKW8GFa28nuZ3mTzNk3IFYvBPQGhhnn/PcVgvxWcdasp2YM4ut9DhGlkTKfXEmBon+zDvIAUPwOu82c79Ovgy2nO1mwg9kxu21BHXZco9vGsXfb8/GF3/cQIDAQAB",
  "host_permissions": [
    "https://us-central1-stacklist-prod.cloudfunctions.net/*",
    "https://cpkbbpjjnflfpcmdeeamloebebnelook.chromiumapp.org/google",
    "https://cpkbbpjjnflfpcmdeeamloebebnelook.chromiumapp.org/apple"
  ],
  "externally_connectable": {
    "matches": [
      "https://stacklist.app/*"
    ]
  },
  "version": "1.6.0"
}