Force Paster

Force Paster

This extension pastes your text even where pasting is disabled.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Force Paster",
  "version": "1.0.1resigned1",
  "description": "This extension pastes your text even where it's disabled.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_title": "Force the paste"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage"
  ],
  "author": "Pratyush Vashisht",
  "browser_specific_settings": {
    "gecko": {
      "id": "{8159730a-851d-4416-bd8b-5d6117192c1f}"
    }
  }
}