PS Tunnel ~ Browser Extension

PS Tunnel ~ Browser Extension

Edit images in Photoshop straight from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PS Tunnel ~ Browser Extension",
  "description": "Edit images in Photoshop straight from your browser.",
  "version": "1.0.3",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "web_accessible_resources": [
    "js/shopify.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.pstunnel.com/*",
        "https://ps-tunnel-app.proxy.elevate.sh/*"
      ],
      "js": [
        "js/content-script-web.js"
      ]
    },
    {
      "matches": [
        "https://*.myshopify.com/admin/*"
      ],
      "js": [
        "js/content-script-shopify.js"
      ]
    },
    {
      "matches": [
        "https://*.mybigcommerce.com/manage/*"
      ],
      "js": [
        "js/content-script-web.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "https://*.pstunnel.com/*",
    "https://staging-app.pstunnel.com/*",
    "https://ps-tunnel-app.proxy.elevate.sh/*",
    "storage"
  ]
}