Videoclipper

Videoclipper

Videoclipper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Videoclipper",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Videoclipper",
  "options_page": "options.html",
  "icons": {
    "16": "assets/logo128.png",
    "48": "assets/logo128.png",
    "128": "assets/logo128.png",
    "300": "assets/logo300.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js",
      "lib/video_wasm/mp4_muxer.js",
      "mbg.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "injecter.js",
        "mediaInjecter.js",
        "keydownHijack.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "content.js",
    "content.css",
    "recordEnd.html",
    "feedback.html",
    "lib/video_wasm/mp4_muxer.js",
    "lib/video_wasm/mp4_muxer.wasm",
    "lib/video_wasm/mp4_muxer.worker.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}