SaveDay - AI Bookmark Manager & Web Highlight

SaveDay - AI Bookmark Manager & Web Highlight

AI Bookmark manager helps you instantly save, highlight web content and retrieve them, summarize YouTube videos and articles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.11",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "action": {
    "default_title": "__MSG_extName__"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "default_locale": "en",
  "permissions": [
    "identity",
    "storage",
    "tabs",
    "activeTab",
    "contextMenus",
    "scripting",
    "sidePanel"
  ],
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/index.js"
      ],
      "all_frames": false,
      "exclude_matches": [
        "*://storybook.save.day/*",
        "*://www.save.day/*",
        "*://app.save.day/*",
        "*://app.caroot.io/*"
      ]
    }
  ],
  "side_panel": {
    "default_path": "js/sidebar.html"
  },
  "commands": {
    "saveCurrentUrl": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Bookmark current URL"
    },
    "createStickyNote": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Alt+W"
      },
      "description": "Create sticky note"
    },
    "genKeyNote": {
      "suggested_key": {
        "default": "Alt+F",
        "mac": "Alt+F"
      },
      "description": "Generate key notes"
    },
    "createVideoNote": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "Create Youtube video note"
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "images/saveday_square_logo_16x16.png",
    "32": "images/saveday_square_logo_16x16.png",
    "48": "images/saveday_square_logo_16x16.png",
    "128": "images/saveday_square_logo_16x16.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/index.html",
        "js/popup.html",
        "js/sidebar.html",
        "images/*",
        "fonts/*",
        "js/*.map"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnoYRIRhvtnl/4UqbfFB5VL+s/f5iUPy0A/DcxOu7CPbAeGYtUKFB4tO6J8EPmKBrw2AUFWvTqo3QBsKiv/zcUdI/KVureUEchwxe778F0Ej0QD2/4Y/CPxOvVQkgn2hVSrz2o+v4qFnZ9FyljLkfOYqqdfxosVHQ95CDnvLv/ziZEGp+94J4lbOLiFcuBl35byEOfqELBxaSRqKUdnZ0tIYwDOIpF4VZ6Sq2QjJOSW8Sc5XU+C45zGbdK1Mtm47npAwpYh06H+Q5PHBWAQ52ZxYlMRsb2kh9DtJlYgnKRos0jvX7Y4zkf4xArQl0Zco3FwACEoNgz+CL5YB5nneefwIDAQAB"
}