Swisscom DIM

Swisscom DIM

This extension is used for browser interaction with Swisscom DIM/BIM.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Swisscom DIM",
  "description": "This extension is used for browser interaction with Swisscom DIM/BIM.",
  "version": "1.8",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "jquery-1.6.4.min.js",
        "detectnumbers.js"
      ]
    }
  ],
  "icons": {
    "16": "swisscom16.png",
    "48": "swisscom48.png",
    "128": "swisscom128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:*/signalr/hubs; object-src 'self'"
}