SpeedLight Viewer helper

SpeedLight Viewer helper

Chrome extension for SpeedLight SL viewer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SpeedLight Viewer helper",
  "version": "1.0.0",
  "description": "Chrome extension for SpeedLight SL viewer",
  "homepage_url": "https://speedlight.io",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/jquery/jquery.min.js",
      "js/XMLRPC.js",
      "js/jquery.md5.js",
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "https://login.agni.secondlife.com/*",
    "https://login.agni.lindenlab.com/*",
    "https://speedlight.io/*",
    "http://localhost/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*",
        "https://speedlight.io/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost/*",
      "https://speedlight.io/*"
    ]
  }
}