IFTTT Folders

IFTTT Folders

Allow user to create folders to group items in the IFTTT application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IFTTT Folders",
  "description": "Allow user to create folders to group items in the IFTTT application",
  "version": "1.1.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "settings.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://ifttt.com/my_applets"
      ],
      "js": [
        "contentscript.js",
        "jquery-3.6.4.js"
      ]
    }
  ]
}