CSS JS injector

CSS JS injector

CSS style will be added to the page for temprory. To test the style change. How it reflect on page reload.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/ga.css",
        "lib/codemirror.js"
      ],
      "js": [
        "js/ga.js",
        "js/css.js",
        "lib/codemirror.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "CSS style will be added to the page for temprory. To test the style change. How it reflect on page reload.",
  "manifest_version": 2,
  "name": "CSS JS injector",
  "permissions": [
    "storage",
    "tabs"
  ],
  "short_name": "css js inj",
  "version": "1.0.1",
  "web_accessible_resources": [
    "script.js"
  ]
}