Simple Image Viewer

Simple Image Viewer

Default image viewer with advanced functionality: rotating, fitting, moving.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Default image viewer with advanced functionality: rotating, fitting, moving.",
  "homepage_url": "https://github.com/Doliman100/Simple-Image-Viewer",
  "manifest_version": 2,
  "name": "Simple Image Viewer",
  "offline_enabled": true,
  "permissions": [
    "management"
  ],
  "version": "3.0",
  "web_accessible_resources": [
    "script.js",
    "style.css"
  ]
}