Quick Create for Google Drive

Quick Create for Google Drive

Simple extension to make it quicker to create new Google drive documents. This Chrome Extension is not affiliated with Google, Inc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/content_script.js"
      ],
      "matches": [
        "https://drive.google.com/*usetemplate?id=*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "Simple extension to make it quicker to create new Google drive documents. This Chrome Extension is not affiliated with Google, Inc.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "Quick Create for Google Drive",
  "options_page": "options.html",
  "short_name": "Quick Create for Drive",
  "version": "3.3",
  "chrome_url_overrides": {
    "newtab": "nt.html"
  }
}