OctoBrowser

OctoBrowser

Control OctoPrint from any url!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OctoBrowser",
  "version": "1.6.5",
  "description": "Control OctoPrint from any url!",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistant": false
  },
  "manifest_version": 2,
  "browser_action": {
    "name": "OctoBrowser",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.0.2.min.js",
        "background.js",
        "api.js",
        "apis.js"
      ],
      "css": [
        "customStyles.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}