url-maker

url-maker

The app can conveniently display the parameters of url.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "url-maker",
  "manifest_version": 2,
  "version": "2.2.0",
  "description": "The app can conveniently display the parameters of url.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "URL-Maker",
    "default_popup": "change.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "main.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}