WorkFlowy Presenter

WorkFlowy Presenter

Presenter for workflowy.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WorkFlowy Presenter",
  "short_name": "WFP",
  "version": "3.3.2",
  "version_name": "2.3.2",
  "description": "Presenter for workflowy.com.",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://workflowy.com/*",
        "https://beta.workflowy.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js",
        "js/modal.js"
      ]
    }
  ],
  "icons": {
    "16": "image/icon16.png",
    "48": "image/icon48.png",
    "128": "image/icon128.png"
  },
  "page_action": {
    "default_title": "WorkFlowy Presenter",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "css/*.css",
    "modal.html",
    "js/inject.js",
    "js/latex.js",
    "js/markdown.js"
  ]
}