JS Bin - Right Click

JS Bin - Right Click

Adds a context menu item when you select a code example on the page to immediate test and edit in JS Bin

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JS Bin - Right Click",
  "description": "Adds a context menu item when you select a code example on the page to immediate test and edit in JS Bin",
  "version": "0.5",
  "permissions": [
    "contextMenus",
    "tabs",
    "http://jsbin.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "app.js"
      ]
    }
  ],
  "manifest_version": 2,
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  }
}