UI Design

UI Design

UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UI Design",
  "short_name": "UI Design",
  "version": "1",
  "manifest_version": 2,
  "description": "UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding",
  "content_security_policy": "default-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "ui16.png",
    "48": "ui48.png",
    "128": "ui128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/style.css"
      ]
    }
  ],
  "browser_action": {},
  "permissions": [
    "activeTab"
  ]
}