Zetatrack
Track your zetamac progress in a google sheet!
¿Qué es Zetatrack?
Zetatrack es una extensión de Chrome desarrollada por alexhalpin00, y su función principal es "Track your zetamac progress in a google sheet!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Zetatrack
Descarga archivos de extensión Zetatrack en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This extension allows players of the popular zetamac mental arithmetic game to track their progress in a google sheet. https://arithmetic.zetamac.com/ Add a valid Sheet ID by clicking on the extension icon. The Sheet ID is the ~44 character identifier in the sheet url. https://docs.google.com/spreadsheets/d/{SHEET ID}/edit#gid=0 At the end of the round the extension will automatically add a row to columns A and B containing the time (UTC) and score respectively. Currently only supports recording the scores of games with default difficulty/parameters. (key=a7220a92)
Información Básica de la Extensión
Nombre | Zetatrack |
ID | ofpanmplflcliehfnnbklcjiddfnnnek |
URL Oficial | https://chromewebstore.google.com/detail/zetatrack/ofpanmplflcliehfnnbklcjiddfnnnek |
Descripción | Track your zetamac progress in a google sheet! |
Tamaño del Archivo | 8.48 KB |
Cantidad de Instalaciones | 32 |
Versión Actual | 0.1.5 |
Última Actualización | 2022-12-07 |
Fecha de Publicación | 2022-12-02 |
Desarrollador | alexhalpin00 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Zetatrack", "description": "Track your zetamac progress in a google sheet!", "version": "0.1.5", "manifest_version": 3, "icons": { "128": "icon.png" }, "action": { "default_icon": { "128": "icon.png" }, "default_title": "Zetatrack", "default_popup": "index.html" }, "background": { "service_worker": "background.js" }, "oauth2": { "client_id": "1098917380926-1klaelmmtbc0gasrg1p7dnlglonnlc5b.apps.googleusercontent.com", "scopes": [ "openid", "email", "profile", "https:\/\/www.googleapis.com\/auth\/drive", "https:\/\/www.googleapis.com\/auth\/spreadsheets" ] }, "permissions": [ "identity", "webRequest", "storage", "scripting" ], "host_permissions": [ "https:\/\/arithmetic.zetamac.com\/*" ] } |