Send to Batch Speed

Send to Batch Speed

Adds a context menu option to send any page to Batch Speed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Send to Batch Speed",
  "version": "1.0",
  "description": "Adds a context menu option to send any page to Batch Speed",
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "context.js"
    ],
    "persistent": true
  },
  "icons": {
    "48": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://batchspeed.com/?*"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}