Meteor 60 Seconds

Meteor 60 Seconds

This extension allows you to play browser games from task bar icon and new tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Meteor 60 Seconds",
  "version": "800.100.140.102",
  "description": "This extension allows you to play browser games from task bar icon and new tab page.",
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png"
    },
    "default_popup": "html/popup/popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "html/default/index.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "web_accessible_resources": [
    "*.json",
    "images/icon16.png",
    "images/icon128.png"
  ]
}