TagProReplays
Save Replays from within TagPro Games
TagProReplays란 무엇입니까?
TagProReplays은(는) chrahunt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save Replays from within TagPro Games"입니다.
확장 프로그램 스크린샷
TagProReplays 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |