Save URL to Todoist

Save URL to Todoist

Saves the current open URL as a task in Todoist

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Save URL to Todoist",
  "version": "1.0",
  "description": "Saves the current open URL as a task in Todoist",
  "action": {
    "default_title": "Save URL to Todoist",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "*://saveurltodoist.vercel.app/"
  ]
}