WorkFlowy Link Preview

WorkFlowy Link Preview

Link Previewer for https://workflowy.com/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WorkFlowy Link Preview",
  "description": "Link Previewer for https://workflowy.com/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.workflowy.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2,
  "version": "1.1.1"
}