Sonlet Facebook Photo Deleter

Sonlet Facebook Photo Deleter

Allows Sonlet and Popitup to delete Facebook photos. Take a look at the intro video, here: http://bit.ly/sonlet-deleter-intro.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sonlet Facebook Photo Deleter",
  "description": "Allows Sonlet and Popitup to delete Facebook photos.  Take a look at the intro video, here: http://bit.ly/sonlet-deleter-intro.",
  "version": "1.2.0",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://shoptheroe.com/*",
        "https://sonlet.com/*",
        "https://beta.shoptheroe.com/*",
        "https://beta.sonlet.com/*",
        "https://beta.popitup.com/*",
        "https://popitup.com/*",
        "http://localhost.localdomain:8000/*",
        "http://localhost:8000/*"
      ],
      "js": [
        "jquery.min.js",
        "sonlet.js"
      ]
    },
    {
      "matches": [
        "https://www.facebook.com/photo.php*"
      ],
      "js": [
        "fb.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}