Trello Writers Block Extension

Trello Writers Block Extension

An extension that imports page references into your Trello boards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Trello Writers Block Extension",
  "description": "An extension that imports page references into your Trello boards.",
  "version": "1.0.0.1",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs"
  ],
  "action": {
    "default_title": "Create Trello card from page...",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "login.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}