TakeAscreen | Record & Capture Screenshots

TakeAscreen | Record & Capture Screenshots

TakeAscreen – the ultimate tool for capturing screenshots and screen recording. Take screenshots, capture screenshot moments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TakeAscreen | Record & Capture Screenshots",
  "description": " TakeAscreen – the ultimate tool for capturing screenshots and screen recording. Take screenshots, capture screenshot moments",
  "version": "2.0.0",
  "manifest_version": 3,
  "default_locale": "en",
  "oauth2": {
    "client_id": "368915722206-dbnn7fqsircop9sct5kjechq5504oari.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.appdata",
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "icons": {
    "16": "logo/32.png",
    "32": "logo/32.png",
    "48": "logo/64.png",
    "64": "logo/64.png",
    "128": "logo/64.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/main.js",
        "recorder/js/detect.js",
        "recorder/js/libraries/ffmpeg.js",
        "recorder/js/sources.js",
        "recorder/js/libraries/plyr.min.js",
        "recorder/js/libraries/StreamSaver.min.js",
        "recorder/js/audiosources.js"
      ],
      "css": [
        "content/index.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/spin.gif",
        "img/audio.png",
        "logo/48.png",
        "recorder/html/camera.html",
        "recorder/html/sources.html",
        "recorder/html/settings.html",
        "recorder/js/content.js",
        "recorder/js/libraries/ffmpeg.js",
        "recorder/css/content.css",
        "assets/images/*",
        "recorder/js/sources.js",
        "js/cameracontent.js",
        "recorder/css/cameracontent.css",
        "recorder/js/libraries/plyr.min.js",
        "recorder/js/libraries/StreamSaver.min.js",
        "recorder/css/libraries/plyr.min.css",
        "recorder/js/audiosources.js",
        "recorder/html/audiosources.html",
        "recorder/assets/images/*",
        "/recorder/assets/images/close.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_title": "TakeaScreen",
    "default_popup": "popup.html",
    "default_icon": "logo/icon.png"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "tabCapture",
    "tabs",
    "downloads",
    "storage",
    "identity",
    "downloads.shelf",
    "scripting",
    "nativeMessaging",
    "desktopCapture",
    "http://*/*",
    "https://*/"
  ],
  "host_permissions": [
    "https://takeascreen.com/*"
  ],
  "commands": {
    "cancel": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "__MSG_extCancel__"
    },
    "mute/unmute": {
      "suggested_key": {
        "default": "Alt+M",
        "mac": "Alt+M"
      },
      "description": "__MSG_extMute__"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "__MSG_extStop__"
    },
    "pause/resume": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "__MSG_extPause__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}