Slates

Slates

Never miss out on what your friends are reading.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Never miss out on what your friends are reading.",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "Slates",
  "version_name": "Slates Beta 1.0",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "SlatesLogo2.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "commands"
  ],
  "icons": {
    "128": "slates.ico"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": "Ctrl+Shift+L",
      "description": "Open Slates"
    },
    "addNode": {
      "suggested_key": "Ctrl+Shift+S",
      "description": "Add link"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "SlatesLogo.svg",
        "SlatesLogo2.png",
        "SlatesLogoDark.svg",
        "SlatesLogoLight.svg",
        "slates.ico"
      ],
      "matches": []
    }
  ]
}