Run Selected HTML

Run Selected HTML

This is an extension that helps you to run html codes,when you read some articles with HTML sample codes on page.[By @hiwanz]

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Run Selected HTML",
  "description": "This is an extension that helps you to run html codes,when you read some articles with HTML sample codes on page.[By @hiwanz]",
  "manifest_version": 2,
  "version": "0.4.0",
  "permissions": [
    "contextMenus",
    "tabs",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  }
}