Examine source code of Docs Insert Image Remover

Inspect and view changes in Docs Insert Image Remover source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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
}