Smurfy Build Embedder

Smurfy Build Embedder

Replaces links to builds on Smurfy with an in-line, embedded version of the build.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smurfy Build Embedder",
  "short_name": "SmurfyEmbed",
  "description": "Replaces links to builds on Smurfy with an in-line, embedded version of the build.",
  "version": "0.2.2",
  "minimum_chrome_version": "40.0",
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "scripts": [
      "js/jquery-2.1.4.min.js",
      "js/background.js"
    ]
  },
  "web_accessible_resources": [
    "fonts/*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webRequest",
    "http://mwo.smurfy-net.de/*",
    "http://*/*",
    "https://*/*"
  ]
}