Devo Runner

Devo Runner

This extension allows you to run your own applications within Devo.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Devo Runner",
  "description": "This extension allows you to run your own applications within Devo.",
  "version": "4.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "popup.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_title": "Run app"
  },
  "permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    "style.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "ltweb.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ]
}