Laidle

Laidle

Laidle is a Chrome extension that generates a comprehensive grocery list from recipes collected in browser!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Laidle",
  "version": "1.1",
  "background": {
    "scripts": [
      "src/scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "src/views/popup.html",
    "default_icons": {
      "16": "resources/icon16.png",
      "48": "resources/icon48.png",
      "128": "resources/icon128.png"
    }
  },
  "content_scripts": [],
  "description": "Laidle is a Chrome extension that generates a comprehensive grocery list from recipes collected in browser!",
  "icons": {
    "16": "resources/icon16.png",
    "48": "resources/icon48.png",
    "128": "resources/icon128.png"
  },
  "homepage_url": "https://www.samuel-glenn.com",
  "permissions": [
    "storage"
  ],
  "options_page": "src/views/options.html",
  "content_security_policy": "script-src 'self' https://stackpath.bootstrapcdn.com https://code.jquery.com https://cdn.jsdelivr.net https://unpkg.com https://cdnjs.buymeacoffee.com https://www.buymeacoffee.com; object-src 'self'"
}