Presetninja: Adobe Preset Tool

Presetninja: Adobe Preset Tool

Export Adobe presets generated from photos by your favorite photographers, straight from Chrome. For Adobe Lightroom + Camera Raw.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Presetninja: Adobe Preset Tool ",
  "description": "Export Adobe presets generated from photos by your favorite photographers, straight from Chrome. For Adobe Lightroom + Camera Raw.",
  "version": "1.1.7",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/lib/FileSaver.min.js",
        "js/lib/xmpEditor.umd.min.js",
        "js/lib/jquery.min.js",
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "Click the icon to show option",
    "default_popup": "html/popup.html",
    "default_icon": "img/on.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}