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
官方網址 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"
        }
    ]
}