Images proxy

Images proxy

Change images path

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Images proxy",
  "version": "1.0",
  "description": "Change images path",
  "devtools_page": "pages/popup.html",
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "contentSettings",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/utils.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/utils.js",
        "js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Images proxy",
    "default_icon": "images/icon.png",
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    "js/popup.js"
  ]
}