Create Google Doc

Create Google Doc

Easily create Google Doc from your browser bar. Paste without formatting into new Google Docs with just one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "en_US",
  "version": "0.1.3",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "menu.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "identity"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "content-script.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "432937052687-id57q36eat0lv3147qvqi9t35rf5d0l2.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ]
  }
}