Unity Answers $$anonymous$$ fix

Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.

Τι είναι το Unity Answers $$anonymous$$ fix;

Το Unity Answers $$anonymous$$ fix είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον paolo pedercini, και η κύρια λειτουργία του είναι "Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Unity Answers $$anonymous$$ fix

Λήψη αρχείων επέκτασης Unity Answers $$anonymous$$ fix σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        For years, the popular game development forum answers.unity.com has been plagued by a hack that replaced all instances of "hi" with the string "$$anonymous$$" . 
In some instances this makes the post unreadable.
This extensions restores the original text by executing a single string replacement line of javascript.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Unity Answers $$anonymous$$ fix Unity Answers $$anonymous$$ fix
ID colofafhdnhgopgnbigiadgknpbgfcgk
Επίσημο URL https://chromewebstore.google.com/detail/unity-answers-anonymous-f/colofafhdnhgopgnbigiadgknpbgfcgk
Περιγραφή Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.
Μέγεθος Αρχείου 22.2 KB
Αριθμός Εγκαταστάσεων 276
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2023-03-17
Ημερομηνία Δημοσίευσης 2023-03-16
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής paolo pedercini
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unity Answers $$anonymous$$ fix",
    "description": "Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.",
    "version": "0.1",
    "author": "Molleindustria",
    "short_name": "Unity Answers fix",
    "manifest_version": 3,
    "icons": {
        "16": "resources\/anon16.png",
        "48": "resources\/anon48.png",
        "32": "resources\/anon32.png",
        "128": "resources\/anon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/answers.unity.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}