VideoStep - スクリーン録画

VideoStep - スクリーン録画

VideoStepのスクリーン録画を行うためのChrome拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.1.49",
  "short_name": "videostep",
  "name": "VideoStep - スクリーン録画",
  "description": "VideoStepのスクリーン録画を行うためのChrome拡張機能です。",
  "browser_action": {
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "http://localhost:4010/*",
    "https://stg-api.videostep.io/*",
    "https://api-videostep.io/*",
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    "contents.js",
    "background.js",
    "reset_content.js",
    "iframe_contents.js",
    "user_media_access_contents.js",
    "contents.html",
    "user_media_access_contents.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "reset_content.js",
        "contents.js",
        "iframe_contents.js",
        "user_media_access_contents.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/symbol.png",
    "48": "images/symbol.png",
    "128": "images/symbol.png"
  },
  "oauth2": {
    "client_id": "945160808999-46n7d7bkgs2vi5erpm7m76cl6j56vk39.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1NjDXCC/l94DXEQfoHO0/89apHo/BMIS572nNdBXd7jmgERD+Q4gz2JwFPOP08LRv2KWJ818gZye3kqMMBFfWCZppGRQ2WKgHuQJFGAn2Dvs7VyP/dWIS98q48Lp/UpQboWrDPy4F7FQlC4yIz902H+s7f6fRithikAaTPwX/o78DAsZGChQNmoi2wkpTaFX2tgSZxTF9svY7lKxnrkBhl5rfhxd/4knerJbB87mgeyYPjef03kG2L9UiCC+XjBPn46bEFt4RycEf/d04eECi/YIVyY+xrjs5PncBbf+8J8tnlc5r/l96784McFzsrl2WYjbXV9MfwgX6aOQLwUwXwIDAQAB",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://apis.google.com https://securetoken.googleapis.com; object-src 'self'"
}