Pulsar

Pulsar

Turn your browser into a gamepad controlled entertainment system

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pulsar",
  "version": "0.3.2",
  "description": "Turn your browser into a gamepad controlled entertainment system",
  "author": "Emilio Rubio Rigo",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "gamepad-mapping.js",
    "app/main.html",
    "custom-launcher.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "pulsar.html"
  },
  "externally_connectable": {
    "matches": [
      "https://projectpulsar.github.io/custom-launcher.html*"
    ]
  },
  "content_security_policy": "script-src 'self' https://cdn.jsdelivr.net; object-src 'self'",
  "manifest_version": 2
}