Dynalist Allstar

Dynalist Allstar

Open 2 docs side by side in https://Dynalist.io and work on them. More cool features on the way!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dynalist Allstar",
  "version": "0.2.1",
  "description": "Open 2 docs side by side in https://Dynalist.io and work on them. More cool features on the way!",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "author": "jerrygoyal",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "offline_enabled": true,
  "content_scripts": [
    {
      "matches": [
        "*://*.dynalist.io/*"
      ],
      "js": [
        "js/page.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    },
    "default_title": "Dynalist Allstar",
    "default_popup": "popup.html"
  },
  "short_name": "Dynalist Allstar",
  "web_accessible_resources": [
    "js/inject.min.js"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'  'unsafe-eval'; object-src 'self'"
}