EPS to PSD Converter

EPS to PSD Converter

Convert EPS files to PSD format

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EPS to PSD Converter",
  "default_locale": "en",
  "description": "Convert EPS files to PSD format",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "activeTab"
  ],
  "version": "4.0",
  "icons": {
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_icon": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "script.js"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "style.css",
    "script.js"
  ]
}