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是由paolo pedercini开发的Chrome扩展程序,该扩展的主要功能是“Replaces all the $$anonymous$$ string found on Unity Answers, restoring the original posts.”。

扩展截图

screenshot
screenshot

下载Unity Answers $$anonymous$$ fix扩展crx文件

下载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"
        }
    ]
}