Tapas Paster

Tapas Paster

Allow novelists to paste text into the Tapas editor and retain bold/italic formatting.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tapas Paster",
  "version": "1.0.2",
  "description": "Allow novelists to paste text into the Tapas editor and retain bold/italic formatting.",
  "permissions": [
    "clipboardRead",
    "contextMenus"
  ],
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "icons": {
    "16": "icon-bitty.png",
    "48": "icon-small.png",
    "128": "icon-large.png"
  },
  "content_scripts": [
    {
      "js": [
        "onpaste.js"
      ],
      "matches": [
        "https://tapas.io/dashboard/episode/create?series_id=*",
        "https://tapas.io/dashboard/episode/update/*"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "manifest_version": 2
}