Edpuzzle

Edpuzzle

Adds an Edpuzzle button next to YouTube™ videos to quickly start editing them in Edpuzzle

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Edpuzzle",
  "version": "3.1.2",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "manifest_version": 2,
  "description": "Adds an Edpuzzle button next to YouTubeâ„¢ videos to quickly start editing them in Edpuzzle",
  "page_action": {
    "default_icon": "images/App-icon_128x128.png",
    "default_title": "Make any video your lesson within/from Youtube"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js",
      "js/app-65652493e7b66f842884.js"
    ]
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "css/edit_with_edpuzzle_button.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "128": "images/App-icon_128x128.png"
  },
  "web_accessible_resources": [
    "images/edpuzzle-edit-button.png",
    "js/edit_with_edpuzzle_button.js",
    "js/edpuzzle_extension_detection_helper"
  ]
}