TagProReplays
Save Replays from within TagPro Games
Qu'est-ce que TagProReplays ?
TagProReplays est une extension Chrome développée par chrahunt, et sa fonction principale est "Save Replays from within TagPro Games".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TagProReplays
Téléchargez les fichiers d'extension TagProReplays au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | TagProReplays |
ID | ejbnakhldlocljfcglmeibhhdnmmcodh |
URL Officiel | https://chromewebstore.google.com/detail/tagproreplays/ejbnakhldlocljfcglmeibhhdnmmcodh |
Description | Save Replays from within TagPro Games |
Taille du Fichier | 976 KB |
Nombre d'Installations | 1,301 |
Version Actuelle | 1.6.7 |
Dernière Mise à Jour | 2022-09-02 |
Date de Publication | 2020-06-22 |
Évaluation | 4.92/5 Total 75 Évaluations |
Développeur | chrahunt |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.reddit.com/r/TagPro/wiki/tagpro_replays_extension |
URL de la Page d'Aide | https://github.com/chrahunt/TagProReplays/issues |
URL de la Page de Politique de Confidentialité | https://docs.google.com/document/d/1ad8kZ9s5nL5ZHyhPMzKKoNspOg4VnOOddFNkNWXMKrQ |
Langues Prises en Charge | 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\/*" ] } |