Skate

Skate

Collect, annotate and collaborate anywhere you damn well please.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Skate",
  "description": "Collect, annotate and collaborate anywhere you damn well please.",
  "version": "0.9.8",
  "icons": {
    "16": "/icons/icon.png",
    "32": "/icons/icon.png",
    "48": "/icons/icon.png",
    "128": "/icons/icon.png"
  },
  "action": {
    "default_title": "Skate",
    "default_icon": {
      "16": "/icons/icon.png",
      "32": "/icons/icon.png",
      "48": "/icons/icon.png",
      "128": "/icons/icon.png"
    },
    "browser_style": true,
    "show_matches": [
      "<all_urls>"
    ]
  },
  "host_permissions": [
    "https://mail.google.com/*",
    "https://app.honest.is/*",
    "https://app.onskate.io/*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "/static/js/zepto.min.js",
        "/static/js/common-min.js"
      ],
      "css": [
        "/static/css/styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/static/js/common-min.js.map"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "configuration/index.html",
    "open_in_tab": false,
    "browser_style": true
  }
}