Photos Direct Link

Photos Direct Link

Allow you to copy a direct link, with extension, from Google Photos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Photos Direct Link",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Allow you to copy a direct link, with extension, from Google Photos.",
  "content_scripts": [
    {
      "matches": [
        "https://photos.google.com/*",
        "https://get.google.com/*"
      ],
      "css": [
        "direct_styles.css"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "direct.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "page_action": {
    "default_icon": "img/GPDL-logo-19.png"
  },
  "icons": {
    "19": "img/GPDL-logo-19.png",
    "48": "img/GPDL-logo-48.png",
    "128": "img/GPDL-logo-128.png"
  }
}