eXtract Snippet

eXtract Snippet

Extract HTML/CSS snippets from websites. Inspect an element and eXtract HTML CSS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://*.example.com/*"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "allLibs.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Extract HTML/CSS snippets from websites. Inspect an element and eXtract HTML CSS",
  "icons": {
    "16": "icon.png",
    "48": "l2.png",
    "128": "l1.png"
  },
  "devtools_page": "devtools.html",
  "manifest_version": 2,
  "name": "eXtract Snippet",
  "permissions": [
    "tabs",
    "<all_urls>",
    "background"
  ],
  "version": "1.5"
}