Custom DOM

Custom DOM

Use predicates to match DOM nodes and pass them to custom functions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Custom DOM",
  "version": "1.0",
  "description": "Use predicates to match DOM nodes and pass them to custom functions.",
  "icons": {
    "24": "assets/icon-24.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "homepage_url": "https://github.com/Whisno/Chrome-Custom-DOM",
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage"
  ]
}