Editor for Docs, Sheets & Slides

Editor for Docs, Sheets & Slides

View, edit and select the layout of Google Docs, Sheets, and Slides with an easy access via extension menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_title": "__MSG_extTitle__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "content/content.css"
      ],
      "js": [
        "content/content.js"
      ],
      "match_about_blank": false,
      "matches": [
        "*://docs.google.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "content/DocsOpener.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "48": "icons/icon_256.png",
    "128": "icons/icon_256.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "__MSG_extShortName__",
  "version": "1.1.7"
}