Monitor URL Edge Extensions

Monitor URL Edge Extensions

Detect to change url when url typed by Users. For URL Redirect of OpenNetLink.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "name": "Monitor URL Edge Extensions",
  "description": "Detect to change url when url typed by Users. For URL Redirect of OpenNetLink.",
  "version": "1.0.0.1",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "ico.png",
    "default_title": "Monitor URL Extensions"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "webNavigation"
  ]
}