Lightfinder

Lightfinder

Lightfinder allows you to see which settings were used to edit a photo in Lightroom

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Lightfinder",
  "version": "1.0.3",
  "description": "Lightfinder allows you to see which settings were used to edit a photo in Lightroom",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "style_minimal.css"
      ],
      "js": [
        "main.min.js",
        "popup_script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "images/guide.png",
    "images/infoSymbol.png"
  ],
  "permissions": [
    "https://api.flickr.com/*",
    "https://c1.staticflickr.com/*"
  ]
}