Force HighRes for Google Photos™

Force HighRes for Google Photos™

Force Google Photos to show image in highest resolution.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Force HighRes for Google Photos™",
  "version": "0.0.2",
  "offline_enabled": true,
  "description": "Force Google Photos to show image in highest resolution.",
  "short_name": "Force HighRes for Google Photos™",
  "content_scripts": [
    {
      "matches": [
        "https://photos.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/logo_16.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  }
}