CSS SCANNER

CSS SCANNER

CSS SCANNER lets you Scan, edit and export CSS and HTML to codepen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CSS SCANNER",
  "version": "0.2.6",
  "description": "CSS SCANNER lets you Scan, edit and export CSS and HTML to codepen ",
  "icons": {
    "32": "assets/img/32.png",
    "64": "assets/img/64.png",
    "128": "assets/img/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/jquery/jquery.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "assets/img/128.png",
    "default_title": "CSS SCANNER"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "plugin.html",
        "assets/img/trash.svg",
        "assets/img/copy.svg",
        "assets/img/code.svg",
        "assets/img/size.svg",
        "img/font.svg",
        "assets/img/close.svg",
        "assets/img/options.svg",
        "assets/img/pause.svg",
        "assets/img/play.svg",
        "assets/img/arrow_down.svg",
        "assets/js/lines.js",
        "assets/**/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}