Shortcast – free video notes for remote work

Shortcast – free video notes for remote work

Record your screen and cam as a short video. Make your work more comfortable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shortcast – free video notes for remote work",
  "short_name": "Shortcast",
  "description": "Record your screen and cam as a short video. Make your work more comfortable.",
  "version": "1.4.11",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Shortcast",
    "default_icon": {
      "16": "icons/logo16.png",
      "48": "icons/logo48.png",
      "128": "icons/logo128.png"
    }
  },
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "permissions": [
    "desktopCapture",
    "storage",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'sha256-NAAKFqXxfjI1LgmKrrc3nxKe0WeY4/Lkue3yXruT4OE=' 'sha256-UtdLJkZdXQ6adZtYaJY8FbnmuNwWtFQ7lkWJX2iMz8E='; object-src 'self'",
  "background": {
    "scripts": [
      "/static/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/app/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "/app/cam-view/index.html",
    "/app/cam-view/cam-view.js",
    "/static/css/content.css",
    "/icons/AccessImage.png",
    "/fonts/montserrat600.woff2",
    "/fonts/montserrat600.woff",
    "/fonts/Montserrat-Medium.woff",
    "/fonts/Montserrat-SemiBold.woff",
    "/fonts/Montserrat-Bold.woff",
    "/fonts/SourceSansPro-Regular.ttf",
    "/fonts/SourceSansPro-SemiBold.ttf"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://app.shortcast.io/*",
      "*://api.shortcast.io/*",
      "*://shortcast-web-dev.herokuapp.com/*",
      "*://shortcast-new.herokuapp.com/*",
      "*://shortcast-client.herokuapp.com/*",
      "https://[email protected]/6310883"
    ]
  }
}