TagProReplays
Save Replays from within TagPro Games
TagProReplays क्या है?
TagProReplays chrahunt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save Replays from within TagPro Games"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TagProReplays एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*" ] } |