Synthetics Formatter for Selenium IDE

Synthetics Formatter for Selenium IDE

Chrome extension for incorporating New Relic Synthetics exporter for Selenium IDE

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Synthetics Formatter for Selenium IDE",
  "version": "1.0.8",
  "version_name": "1.0.8",
  "description": "Chrome extension for incorporating New Relic Synthetics exporter for Selenium IDE",
  "homepage_url": "https://github.com/tanben/nrsynthetics-for-seleniumide",
  "icons": {
    "16": "icons/nr16.png",
    "32": "icons/nr32.png",
    "54": "icons/nr56.png",
    "64": "icons/nr64.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/content.js"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "assets/background.js"
    ]
  }
}