Force Paster

Force Paster

This extension allows you to paste text into input fields that have disabled copy and paste.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Force Paster",
  "version": "2.0.0",
  "description": "This extension allows you to paste text into input fields that have disabled copy and paste.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "author": "Pratyush Vashisht",
  "action": {
    "default_icon": "icon128.png",
    "default_title": "Force the paste"
  },
  "content_security_policy": {},
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}