Images to base64

Images to base64

Replaces all images on the page with base64 dataUrl representation. It helps you pass CORS restrictions while developing a webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionShortName__",
  "description": "__MSG_extensionDescription__",
  "author": "Pawel Psztyc <[email protected]>",
  "manifest_version": 2,
  "version": "1.0.9",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "tabs"
  ],
  "icons": {
    "16": "assets/icon_16.png",
    "48": "assets/icon_48.png",
    "128": "assets/icon_128.png"
  },
  "default_locale": "en"
}