Food for Thought

Food for Thought

The most frictionless way to save and retain curiosity-inducing and thought-provoking content on the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Food for Thought",
  "version": "1.1.2",
  "background": {
    "service_worker": "background.js"
  },
  "description": "The most frictionless way to save and retain curiosity-inducing and thought-provoking content on the internet.",
  "permissions": [
    "tabs",
    "notifications",
    "activeTab",
    "scripting",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logo.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "addLink": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Save content."
    }
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:5173/*",
      "http://localhost:5174/*",
      "http://localhost:5175/*",
      "https://fft.web.app/*",
      "http://fft.web.app/*",
      "https://foodforthought.site/*"
    ]
  }
}