Google Docs Image Viewer

Google Docs Image Viewer

Free your embedded Google Docs images!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Docs Image Viewer",
  "description": "Free your embedded Google Docs images!",
  "author": "Gino Valente",
  "permissions": [],
  "browser_action": {
    "default_title": "Google Docs Image Viewer",
    "default_icon": {
      "16": "images/default_icon16.png",
      "32": "images/default_icon32.png",
      "48": "images/default_icon48.png",
      "128": "images/default_icon128.png"
    }
  },
  "icons": {
    "16": "images/default_icon16.png",
    "32": "images/default_icon32.png",
    "48": "images/default_icon48.png",
    "128": "images/default_icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "style.css"
      ],
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "https://docs.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "version": "1.1"
}