Screenshot to Google Slides

Screenshot to Google Slides

Screenshot to Google Slides は、手順書の作成をより簡単にするためのChrome拡張機能です。キャプチャしたいWebページを開いてクリックするだけで、スクリーンショットが自動でGoogleスライドに追加されます。 Screenshot…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screenshot to Google Slides",
  "version": "1.1",
  "description": "",
  "permissions": [
    "activeTab",
    "storage",
    "identity"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon_16.png",
      "32": "icon_32.png",
      "48": "icon_48.png",
      "128": "icon_128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "oauth2": {
    "client_id": "481640214156-73t4k4qjgpided1mfjp41tekb7i0naln.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/presentations",
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "manifest_version": 2
}