oEmbed pop-out

oEmbed pop-out

Creates a pop-out window for content utilising the oEmbed API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "oEmbed pop-out",
  "version": "1.0.1",
  "description": "Creates a pop-out window for content utilising the oEmbed API",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "jquery-1.9.1.min.js",
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "page_action": {
    "default_icon": "icon-16.png",
    "default_title": "There's embedded content for this page!"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2
}