OGame Timer

OGame Timer

Calculate times remaining in Ogame.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "OGT",
  "description": "__MSG_appDesc__",
  "version": "2.2.2",
  "icons": {
    "16": "img/app/icon-16.png",
    "48": "img/app/icon-48.png",
    "128": "img/app/icon-128.png"
  },
  "default_locale": "en",
  "permissions": [
    "tabs",
    "notifications",
    "alarms"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com/analytics.js; object-src 'self';",
  "background": {
    "persistent": false,
    "scripts": [
      "js/jquery.js",
      "js/ogt.js",
      "js/ogt.utils.js",
      "js/ogt.params.js",
      "js/ogt.event.js",
      "js/ogt.alert.js",
      "js/ogt.timers.js",
      "js/ogt.infos.js",
      "js/ogt.settings.js",
      "js/ogt.queue.js",
      "js/ogt.background.js"
    ]
  },
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_title": "__MSG_appName__",
    "default_icon": {
      "19": "img/popup/icon-19.png",
      "38": "img/popup/icon-38.png"
    },
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/ogt.js",
        "js/ogt.utils.js",
        "js/ogt.params.js",
        "js/ogt.event.js",
        "js/ogt.timers.js",
        "js/ogt.infos.js",
        "js/ogt.alert.js",
        "js/ogt.settings.js",
        "js/ogt.queue.js",
        "js/ogt.page.js"
      ],
      "run_at": "document_end",
      "matches": [
        "http://*.ogame.gameforge.com/*"
      ]
    }
  ]
}