UniverseView Extension

UniverseView Extension

UniverseView is a fast and fun OGame add-on. Find planets everywhere and make the way you play OGame more efficient and effective!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UniverseView Extension",
  "short_name": "UniverseView",
  "version": "4.2.1",
  "version_name": "4.2.1",
  "description": "UniverseView is a fast and fun OGame add-on. Find planets everywhere and make the way you play OGame more efficient and effective!",
  "homepage_url": "https://universeview.be",
  "manifest_version": 2,
  "content_scripts": [
    {
      "include_globs": [
        "*://*.ogame.gameforge.com/game/index.php*"
      ],
      "js": [
        "chrome/content/scripts/universeview.js"
      ],
      "css": [
        "chrome/content/css/stylesheet.css",
        "chrome/content/css/skin.css"
      ],
      "matches": [
        "*://*.ogame.gameforge.com/game/index.php*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "chrome/content/scripts/universeview.js",
    "chrome/content/img/*.png",
    "chrome/content/img/*.gif",
    "chrome/content/img/*.jpg",
    "chrome/content/templates/*.html",
    "chrome/content/css/*.css"
  ],
  "permissions": [
    "unlimitedStorage",
    "storage",
    "*://*.ogame.gameforge.com/*",
    "management",
    "notifications",
    "alarms",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "minimum_chrome_version": "41",
  "icons": {
    "16": "logo-16.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  }
}