TagProReplays

Save Replays from within TagPro Games

¿Qué es TagProReplays?

TagProReplays es una extensión de Chrome desarrollada por chrahunt, y su función principal es "Save Replays from within TagPro Games".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión TagProReplays

Descarga archivos de extensión TagProReplays 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

                        Record yourself playing TagPro! This extension is always recording when you're in-game, just tell it when you want to save and then access your replay from the menu accessible from any TagPro server home page. Preview your replays, edit, and then render them so you can upload and share with friends.

Hover over buttons in the menu for some basic instructions.

See latest changes in the release notes: https://github.com/chrahunt/TagProReplays/releases/latest

Search for and submit any issues here: https://github.com/chrahunt/TagProReplays/issues

Privacy Policy: https://docs.google.com/document/d/1ad8kZ9s5nL5ZHyhPMzKKoNspOg4VnOOddFNkNWXMKrQ

Note: This is not an official product of, officially affiliated with, or endorsed/supported by TagPro or Koalabeast.                    

Información Básica de la Extensión

Nombre TagProReplays TagProReplays
ID ejbnakhldlocljfcglmeibhhdnmmcodh
URL Oficial https://chromewebstore.google.com/detail/tagproreplays/ejbnakhldlocljfcglmeibhhdnmmcodh
Descripción Save Replays from within TagPro Games
Tamaño del Archivo 976 KB
Cantidad de Instalaciones 1,301
Versión Actual 1.6.7
Última Actualización 2022-09-02
Fecha de Publicación 2020-06-22
Calificación 4.92/5 Total de 75 Calificaciones
Desarrollador chrahunt
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.reddit.com/r/TagPro/wiki/tagpro_replays_extension
URL de la Página de Ayuda https://github.com/chrahunt/TagProReplays/issues
URL de la Página de Política de Privacidad https://docs.google.com/document/d/1ad8kZ9s5nL5ZHyhPMzKKoNspOg4VnOOddFNkNWXMKrQ
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TagProReplays",
    "version": "1.6.7",
    "description": "Save Replays from within TagPro Games",
    "minimum_chrome_version": "49",
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "http:\/\/support.koalabeast.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/record.css",
                "css\/menu.css",
                "css\/viewer.css"
            ],
            "matches": [
                "*:\/\/*.koalabeast.com\/*",
                "*:\/\/koalabeast.com\/*",
                "http:\/\/*.newcompte.fr\/*",
                "http:\/\/tangent.jukejuice.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "images\/icon128.png"
    },
    "sandbox": {
        "pages": [
            "html\/ajv-sandbox.html"
        ]
    },
    "web_accessible_resources": [
        "js\/recording.js",
        "images\/*.png",
        "html\/*.html",
        "css\/*.css",
        "fonts\/*"
    ]
}