Akamai Script Management Policy Tester

Akamai Script Management Policy Tester

A tool to test Script Management policies locally. Experiment with settings in-browser instead of activating a policy on staging.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Akamai Script Management Policy Tester",
  "short_name": "SM Tester",
  "description": "A tool to test Script Management policies locally. Experiment with settings in-browser instead of activating a policy on staging.",
  "version": "0.4.3",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/sm-icon-20.png",
    "128": "images/sm-icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "devtools_page": "scripts/sm-ui.html",
  "browser_action": {
    "default_icon": {
      "20": "images/sm-icon-20.png",
      "64": "images/sm-icon-64.png"
    },
    "default_title": "Akamai Script Management Policy Tester"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/contentscript.js"
      ],
      "all_frames": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}