WME PL-EASE

WME PL-EASE

Always reload WME to permalink. Jump to permalink when pasted in address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WME PL-EASE",
  "description": "Always reload WME to permalink. Jump to permalink when pasted in address bar.",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.waze.com/*editor*"
      ],
      "exclude_matches": [
        "*://*.waze.com/user*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "version": "1.1.0",
  "permissions": [
    "webRequest",
    "<all_urls>",
    "webRequestBlocking",
    "tabs"
  ]
}