Copy Swagger

Copy Swagger

Adds copy action to swagger formatted JSON

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Swagger",
  "version": "0.3.1",
  "description": "Adds copy action to swagger formatted JSON",
  "browser_action": {
    "default_icon": "copy-logo19.png",
    "default_title": "Copy Swag"
  },
  "minimum_chrome_version": "14",
  "content_scripts": [
    {
      "matches": [
        "*://*/swagger*",
        "*://*.swagger.io/*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "css": [
        "background.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "copy-logo16.png",
    "48": "copy-logo48.png",
    "128": "copy-logo128.png",
    "256": "copy-logo256.png"
  },
  "web_accessible_resources": [
    "background.js"
  ],
  "manifest_version": 2
}