Query Parameter Manager

Query Parameter Manager

A Manager development tool for changing, manipulating, and storing url query parameters

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Query Parameter Manager",
  "version": "1.3",
  "description": "A Manager development tool for changing, manipulating, and storing url query parameters",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "QueryParameterIcon.png",
    "48": "QueryParameterIcon.png",
    "128": "QueryParameterIcon.png"
  },
  "page_action": {
    "default_popup": "/build/index.html"
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Ctrl+Shift+L"
      }
    }
  },
  "permissions": [
    "declarativeContent",
    "storage",
    "webNavigation",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "author": "Julia Finarovsky",
  "homepage_url": "https://github.com/Juliafin/urlQueryParamterManager"
}