GZ Pointer

GZ Pointer

Circular pointer for Gamezer billiards games.

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_appTitle__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.2.3",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "page_action": {
    "default_icon": "img/icon16.png",
    "default_popup": "htm/popup.html",
    "default_title": "__MSG_appTitle__"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.gamezer.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": []
}