GMX Cam App DLink

Extensión para iniciar automáticamente en DLink Cloud
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GMX Cam App DLink",
  "version": "0.0.5",
  "description": "Extensión para iniciar automáticamente en DLink Cloud",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "js/autologin.js"
      ],
      "matches": [
        "http://appcamtest.test/*",
        "https://dlink.gamliel.mx/*",
        "https://www.mydlink.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/checkIfInstalled.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "https://dlink.gamliel.mx/*"
    ]
  }
}