Euphoria Phone Extension

Euphoria Phone Extension

This extension will allow you to access your Euphoria web phone anywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Euphoria Phone Extension",
  "description": "This extension will allow you to access your Euphoria web phone anywhere.",
  "version": "1.2",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.htm"
  },
  "options_page": "options.html",
  "background": {
    "persistent": false,
    "scripts": [
      "jquery.js",
      "phone.js",
      "options.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "96": "icon-96-xhdpi.png",
    "128": "icon-128-xhdpi.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "main.js"
      ],
      "run_at": "document_end"
    }
  ]
}