Templates for Google Sheets™ by cloudHQ

Templates for Google Sheets™ by cloudHQ

Modern and Beautiful Templates for Google Sheets™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDetail__",
  "version": "1.0.1.0",
  "author": "https://www.cloudhq.net",
  "content_scripts": [
    {
      "exclude_globs": [],
      "css": [],
      "include_globs": [],
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "mutation-summary.js",
        "docs_templates.js"
      ],
      "run_at": "document_start"
    },
    {
      "exclude_globs": [],
      "css": [],
      "include_globs": [],
      "matches": [
        "https://drive.google.com/*"
      ],
      "js": [
        "mutation-summary.js",
        "drive_template_menu.js",
        "drive_app_menu.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "storage",
    "background",
    "tabs"
  ],
  "host_permissions": [
    "https://mail.google.com/",
    "https://docs.google.com/",
    "https://drive.google.com/",
    "https://mail-attachment.googleusercontent.com/",
    "https://inbox.google.com/",
    "https://www.cloudhq.net/"
  ],
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "javascripts/*",
        "icons/*",
        "*"
      ],
      "matches": [
        "*://*.cloudhq.net/*",
        "*://*.google-docs-templates.com/*",
        "*://*.google.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "converted_from_user_script": true,
  "externally_connectable": {
    "matches": [
      "*://*.cloudhq.net/*"
    ]
  },
  "action": {
    "default_icon": "icons/google_docs_templates.png",
    "default_title": "__MSG_appName__"
  }
}