Vimflowy

Vimflowy

Vim shortcuts for Workflowy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vimflowy",
  "short_name": "Vimflowy",
  "description": "Vim shortcuts for Workflowy",
  "version": "0.0.5.2",
  "manifest_version": 2,
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://workflowy.com/*",
        "https://*.workflowy.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "contentscript_start.js"
      ]
    },
    {
      "matches": [
        "https://workflowy.com/*",
        "https://*.workflowy.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentscript_idle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "state.js",
    "TimeTagCounter.js",
    "easyMotion.js",
    "cursorMovement.js",
    "vimflowyFunctionLibrary.js",
    "keybindings.js",
    "transparentKeybindings.js",
    "vimflowy.js",
    "options.js"
  ],
  "permissions": [
    "https://workflowy.com/*",
    "https://*.workflowy.com/*",
    "storage"
  ],
  "options_page": "options.html"
}