TagProReplays
Save Replays from within TagPro Games
Что такое TagProReplays?
TagProReplays - это расширение Chrome, разработанное chrahunt, и его основная функция - "Save Replays from within TagPro Games".
Снимки экрана расширения
Скачать файл CRX расширения TagProReplays
Скачайте файлы расширений TagProReplays в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | TagProReplays |
ID | ejbnakhldlocljfcglmeibhhdnmmcodh |
Официальный URL | https://chromewebstore.google.com/detail/tagproreplays/ejbnakhldlocljfcglmeibhhdnmmcodh |
Описание | Save Replays from within TagPro Games |
Размер файла | 976 KB |
Количество установок | 1,301 |
Текущая Версия | 1.6.7 |
Последнее Обновление | 2022-09-02 |
Дата публикации | 2020-06-22 |
Рейтинг | 4.92/5 Всего 75 оценок |
Разработчик | chrahunt |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://www.reddit.com/r/TagPro/wiki/tagpro_replays_extension |
URL страницы помощи | https://github.com/chrahunt/TagProReplays/issues |
URL страницы политики конфиденциальности | https://docs.google.com/document/d/1ad8kZ9s5nL5ZHyhPMzKKoNspOg4VnOOddFNkNWXMKrQ |
Поддерживаемые языки | 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\/*" ] } |