TagProReplays
Save Replays from within TagPro Games
TagProReplays là gì?
TagProReplays là một tiện ích mở rộng Chrome được phát triển bởi chrahunt, và tính năng chính của nó là "Save Replays from within TagPro Games".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng TagProReplays
Tải xuống các tệp mở rộng TagProReplays dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | TagProReplays |
ID | ejbnakhldlocljfcglmeibhhdnmmcodh |
URL Chính Thức | https://chromewebstore.google.com/detail/tagproreplays/ejbnakhldlocljfcglmeibhhdnmmcodh |
Mô tả | Save Replays from within TagPro Games |
Kích Thước Tệp | 976 KB |
Số Lần Cài Đặt | 1,301 |
Phiên Bản Hiện Tại | 1.6.7 |
Cập Nhật Lần Cuối | 2022-09-02 |
Ngày Phát Hành | 2020-06-22 |
Đánh Giá | 4.92/5 Tổng số 75 Đánh Giá |
Nhà Phát Triển | chrahunt |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.reddit.com/r/TagPro/wiki/tagpro_replays_extension |
URL Trang Trợ Giúp | https://github.com/chrahunt/TagProReplays/issues |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/1ad8kZ9s5nL5ZHyhPMzKKoNspOg4VnOOddFNkNWXMKrQ |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |