Deskulous Chrome Extension

Deskulous Chrome Extension

Deskulous, the first web based remote desktop (RDC) manager. Launch RDC connections right from a web browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Deskulous Chrome Extension",
  "short_name": "Deskulous",
  "description": "Deskulous, the first web based remote desktop (RDC) manager. Launch RDC connections right from a web browser",
  "version": "1.0.2",
  "offline_enabled": true,
  "homepage_url": "http://deskulous.com",
  "author": "Deskulous",
  "permissions": [
    "http://localhost/*",
    "nativeMessaging"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png"
  },
  "background": {
    "scripts": [
      "actions.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "content-extension.js"
      ]
    }
  ]
}