Google Drive: Remove Priority Menu

Google Drive: Remove Priority Menu

Removes the 'Priority' item in Google Drive. Made by Andrew Hogan.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Drive: Remove Priority Menu",
  "version": "1.01",
  "version_name": "1.01 alpha",
  "description": "Removes the 'Priority' item in Google Drive. Made by Andrew Hogan.",
  "content_scripts": [
    {
      "matches": [
        "*://drive.google.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "livequery.js",
        "remove.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "*://drive.google.com/*"
  ],
  "icons": {
    "48": "icons/cencus48X48.png",
    "96": "icons/cencus96X96.png"
  },
  "web_accessible_resources": [
    "/index.html",
    "/head.html"
  ]
}