Force Paster

Force Paster

This extension allows you to paste text into input fields in websites that have disabled pasting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Force Paster",
  "version": "2.1.0",
  "description": "This extension allows you to paste text into input fields in websites that have disabled pasting.",
  "icons": {
    "16": "icons/light/icon16.png",
    "32": "icons/light/icon32.png",
    "48": "icons/light/icon48.png",
    "128": "icons/light/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "permissions": [
    "storage",
    "clipboardRead"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "author": "Pratyush Vashisht",
  "action": {
    "default_icon": {
      "16": "icons/light/icon16.png",
      "32": "icons/light/icon32.png",
      "48": "icons/light/icon48.png",
      "128": "icons/light/icon128.png"
    },
    "default_title": "Force the paste"
  },
  "content_security_policy": {}
}