VZ Quickparts

VZ Quickparts

This extension used to display the auto-text that is already saved as shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "scripts/injection/constants.js",
      "scripts/background/background.js",
      "scripts/oauth/oauth_call.js",
      "scripts/oauth/api_initialize.js",
      "scripts/oauth/api_request.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*",
        "https://mail.google.com/*"
      ],
      "css": [
        "css/quill.css"
      ],
      "js": [
        "scripts/injection/constants.js",
        "scripts/libraries/quill.js"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "This extension used to display the auto-text that is already saved as shortcuts",
  "icons": {
    "16": "images/icon.png",
    "128": "images/icon.png"
  },
  "manifest_version": 2,
  "name": "VZ Quickparts",
  "offline_enabled": true,
  "omnibox": {
    "keyword": "VZ Quickparts"
  },
  "commands": {
    "toggle-calendar-page": {
      "suggested_key": {
        "default": "Ctrl+Shift+8"
      },
      "description": "Take me to the calendar description field"
    },
    "point-attachment-gmail": {
      "suggested_key": {
        "default": "Ctrl+Shift+9"
      },
      "description": "Take me to the gmail attachment field"
    }
  },
  "optional_permissions": [],
  "options_page": "html/options.html",
  "permissions": [
    "https://www.googleapis.com/*",
    "https://app.elastica.net/*",
    "http://app.elastica.net/*",
    "https://*.elastica.net/*",
    "https://*.googleusercontent.com/*",
    "commands",
    "tabs",
    "alarms",
    "storage",
    "cookies",
    "unlimitedStorage",
    "https://calendar.google.com/*",
    "https://mail.google.com/*",
    "notifications",
    "clipboardRead"
  ],
  "short_name": "VZ Quickparts",
  "version": "1.1.2.4",
  "web_accessible_resources": [
    "images/add_icon.png"
  ]
}