Unity Answers $$anonymous$$ fix

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

Cos'è Unity Answers $$anonymous$$ fix?

Unity Answers $$anonymous$$ fix è un'estensione di Chrome sviluppata da paolo pedercini, e la sua funzione principale è "Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Unity Answers $$anonymous$$ fix

Scarica i file di estensione Unity Answers $$anonymous$$ fix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Unity Answers $$anonymous$$ fix Unity Answers $$anonymous$$ fix
ID colofafhdnhgopgnbigiadgknpbgfcgk
URL Ufficiale https://chromewebstore.google.com/detail/unity-answers-anonymous-f/colofafhdnhgopgnbigiadgknpbgfcgk
Descrizione Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.
Dimensione del File 22.2 KB
Conteggio Installazioni 276
Versione Corrente 0.1
Ultimo Aggiornamento 2023-03-17
Data di Pubblicazione 2023-03-16
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore paolo pedercini
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}