ReSTYLE

ReSTYLE

ReSTYLE Easy way to customize your web pages Change the appearance of your favorite web pages as you need Modern UI - Inspired…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ReSTYLE",
  "version": "2.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icons/ReSTYLE_256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "38": "icons/ReSTYLE_38.png",
    "256": "icons/ReSTYLE_256.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "<all_urls>"
  ]
}