Docs Creator - Google Drive Assistant

Docs Creator - Google Drive Assistant

Create new docs, sheets, slides and view google drive files from your browser bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "version": "3.9.8",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "icons/icon-128_x_128.png"
  },
  "permissions": [
    "storage",
    "downloads",
    "identity",
    "identity.email"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "src/js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/icon-16_x_16.png",
    "32": "icons/icon-32_x_32.png",
    "64": "icons/icon-64_x_64.png",
    "128": "icons/icon-128_x_128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhCxztgAgaaIuffn5Nt36tj9nTLm88scP8zfzNSm7Rmrevb0Y/a/NIySOSrviMw/hr047dpKhseV4it0/HljDw7ipqgO0CoXlZWrPnY50Fnngta/3R5bjBMTI4EfX8ykX8coN6B83Q6RjAdqWzYvcDJZaw5+Sf8iZIkE5RmVRnEMWDq6kY3a5oSZt956X5IJDLPsAh9VBk1nOUi/DLvC0uTQKlDtctKK/bP1M0Yq7sFmxNWge0UioU0cV/0ym0x1J7Qlk2ofIr29zh1hiYSHlnrnfqct0yUfPZeWnYVmj6GOja44Tv89mFn3gMOCC49Kx+knPn2lfjjzoCQmWNLjuWwIDAQAB",
  "oauth2": {
    "client_id": "530311117568-qkkvrkfum8cnhmb87iddli004ns5aj0a.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/offline"
    ]
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "host_permissions": [
    "<all_urls>"
  ]
}