UI Feedback

UI Feedback

A tool that lets you select html and copy screenshot to clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UI Feedback",
  "version": "1",
  "manifest_version": 3,
  "description": "A tool that lets you select html and copy screenshot to clipboard.",
  "homepage_url": "https://isneuu.com",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "css": [
        "inject.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "Start pointing!",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ]
}