TagProReplays

Save Replays from within TagPro Games

Τι είναι το TagProReplays;

Το TagProReplays είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chrahunt, και η κύρια λειτουργία του είναι "Save Replays from within TagPro Games".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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 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\/*"
    ]
}