Element Selectors

Element Selectors

Chrome extension to find element selectors

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Element Selectors",
  "description": "Chrome extension to find element selectors",
  "version": "0.0.1",
  "author": "Gurvinder Dhillon",
  "devtools_page": "devtools/devtools.html",
  "icons": {
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content_scripts.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "permissions": [
    "clipboardWrite"
  ],
  "offline_enabled": true
}