Create Embeddable Links for Google Photos

Create Embeddable Links for Google Photos

Creates embeddable image links for google photos and places them on the clipboard. Supports direct image links and BBCode snippets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Create Embeddable Links for Google Photos",
  "version": "0.0.3",
  "description": "Creates embeddable image links for google photos and places them on the clipboard. Supports direct image links and BBCode snippets.",
  "background": {
    "scripts": [
      "scripts/eventPage.js"
    ],
    "persistent": false
  },
  "permissions": [
    "contextMenus",
    "clipboardWrite",
    "storage"
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "minimum_chrome_version": "6.0.0.0",
  "icons": {
    "16": "images/link-symbol-16.png",
    "24": "images/link-symbol-24.png",
    "32": "images/link-symbol-32.png",
    "64": "images/link-symbol-64.png",
    "128": "images/link-symbol-128.png",
    "256": "images/link-symbol-256.png",
    "512": "images/link-symbol-512.png"
  }
}