GZ Pointer
Circular pointer for Gamezer billiards games.
What is GZ Pointer?
GZ Pointer is a Chrome extension developed by Faris Musafir, and its main feature is "Circular pointer for Gamezer billiards games.".
Extension Screenshots
Download GZ Pointer Extension CRX File
Download GZ Pointer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension displays a circle around mouse pointer when playing Gamezer.com billiards Also customizable in size and color.
Extension Basic Information
Name | |
ID | nokbihopfkicbdenmaeochkbbonimmjj |
Official URL | https://chrome.google.com/webstore/detail/gz-pointer/nokbihopfkicbdenmaeochkbbonimmjj |
Description | Circular pointer for Gamezer billiards games. |
File Size | 226 KB |
Installation Count | 340 |
Current Version | 1.2.3 |
Last Updated | 2020-07-29 |
Publish Date | 2020-07-15 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Faris Musafir |
[email protected] | |
Payment Type | free |
Help Page URL | https://twitter.com/Msaafrr |
Supported Languages | de,en,fr,tr,es,es-419,pt-BR,pt-PT |
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": { "128": "img\/icon128.png", "48": "img\/icon48.png", "16": "img\/icon16.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": [] } |