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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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