Examine source code of UniverseView Extension

Inspect and view changes in UniverseView Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "UniverseView Extension",
  "short_name": "UniverseView",
  "version": "4.2.1",
  "version_name": "4.2.1",
  "author": "Klaas Van Parys <info@universeview.be>",
  "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"
    ],
    "persistent": true
  },
  "minimum_chrome_version": "41",
  "icons": {
    "16": "logo-16.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}