Docs Insert Image Remover

Docs Insert Image Remover

Hides the ability to add images to a Google Doc using the Insert dropdown menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Docs Insert Image Remover",
  "version": "2",
  "description": "Hides the ability to add images to a Google Doc using the Insert dropdown menu.",
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_title": "Docs Insert Image Remover"
  },
  "permissions": [
    "*://docs.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/*"
      ],
      "css": [
        "css/docs.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "manifest_version": 2
}