Recently Added Photos for Google Photos

Recently Added Photos for Google Photos

Add a button to Google Photos to easily see the last uploaded photos in your gallery

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "3.5",
  "author": "Cristian Valls",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://photos.google.com/*"
      ],
      "js": [
        "jquery.js",
        "main.js"
      ],
      "css": [
        "main.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon-16.png",
    "24": "icon-24.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "icon-24.png"
  ]
}