Convert To Popup

Converts the current tab or link to a popup window
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Convert To Popup",
  "version": "1.0",
  "description": "Converts the current tab or link to a popup window",
  "browser_action": {
    "default_icon": "logo.png",
    "default_title": "Convert 2 Popup"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ]
}