Redpen: Report bugs with screenshot/recording

Redpen: Report bugs with screenshot/recording

Capture screenshot and record screen to report bugs and visual feedback.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Redpen: Report bugs with screenshot/recording",
  "version": "1.0.50",
  "offline_enabled": true,
  "manifest_version": 2,
  "description": "Capture screenshot and record screen to report bugs and visual feedback.",
  "browser_action": {
    "default_icon": {
      "16": "./assets/logo_16.png",
      "48": "./assets/logo_48.png",
      "64": "./assets/logo_64.png",
      "128": "./assets/logo_128.png"
    },
    "default_title": "Redpen - click to capture (Alt+Shift+X), double click to record (Alt+Shift+D)"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "icons": {
    "16": "./assets/logo_16.png",
    "48": "./assets/logo_48.png",
    "64": "./assets/logo_64.png",
    "128": "./assets/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.redpen.ai/*"
      ],
      "js": [
        "./js/redpenContentScript.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/detect.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://app.redpen.ai/*"
      ],
      "js": [
        "./js/consoleScriptInjector.js",
        "./js/displayInfoContentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/browserConsoleReader.js",
    "/css/screenrecorder/content.css",
    "html/camera.html",
    "html/sources.html",
    "html/settings.html",
    "html/recordingSettingsDialog.html",
    "js/recordingSettingsScript.js",
    "js/videoContentScript.js",
    "css/content.css",
    "css/recordingSettings.css",
    "assets/images/*",
    "js/sources.js",
    "js/camera.js",
    "js/libraries/plyr.min.js",
    "css/libraries/plyr.min.css"
  ],
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "permissions": [
    "<all_urls>",
    "tabCapture",
    "activeTab",
    "tabs",
    "storage",
    "history",
    "webRequest"
  ],
  "commands": {
    "redpen_capture": {
      "suggested_key": {
        "default": "Alt+Shift+X",
        "mac": "Alt+Shift+X"
      },
      "description": "Capture a screenshot"
    },
    "redpen_video_record": {
      "suggested_key": {
        "default": "Alt+Shift+D",
        "mac": "Alt+Shift+D"
      },
      "description": "Record a video"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}