Unity Answers $$anonymous$$ fix

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

O que é Unity Answers $$anonymous$$ fix?

Unity Answers $$anonymous$$ fix é uma extensão do Chrome desenvolvida por paolo pedercini, e sua principal característica é "Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Unity Answers $$anonymous$$ fix

Baixe arquivos de extensão Unity Answers $$anonymous$$ fix no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Unity Answers $$anonymous$$ fix Unity Answers $$anonymous$$ fix
ID colofafhdnhgopgnbigiadgknpbgfcgk
URL Oficial https://chromewebstore.google.com/detail/unity-answers-anonymous-f/colofafhdnhgopgnbigiadgknpbgfcgk
Descrição Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.
Tamanho do Arquivo 22.2 KB
Contagem de Instalações 276
Versão Atual 0.1
Última Atualização 2023-03-17
Data de Publicação 2023-03-16
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor paolo pedercini
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}