- Read this page and follow all the instructions.
- Clone the repository:
cd src
git clone https://github.com/Alex9600t/Fake-Avatar-Decoration-Plugin userplugins/fakeAvatarDecoration
Important
In the file Vencord/src/main/csp/index.ts, add the following value to the end of the CspPolicies variable:
"vcfad.vercel.app": ImageAndCssSrc
Example:
Before:
export const CspPolicies: PolicyMap = {
"http://localhost:*": ImageAndCssSrc,
"http://127.0.0.1:*": ImageAndCssSrc,
"localhost:*": ImageAndCssSrc,
// ...
"usrbg.is-hardly.online": ImageSrc, // USRBG API
"icons.duckduckgo.com": ImageSrc, // DuckDuckGo Favicon API (Reverse Image Search)
}
After:
export const CspPolicies: PolicyMap = {
"http://localhost:*": ImageAndCssSrc,
"http://127.0.0.1:*": ImageAndCssSrc,
"localhost:*": ImageAndCssSrc,
. // ...
"usrbg.is-hardly.online": ImageSrc, // USRBG API
"icons.duckduckgo.com": ImageSrc, // DuckDuckGo Favicon API (Reverse Image Search)
// NEW
"vcfad.vercel.app": ImageAndCssSrc, // NEW
}
- Rebuild vencord:
pnpm build
pnpm inject
- Open settings and enable the plugin.
- Go to the website and find a beautiful avatar decoration.
- Paste the ID into the ID field.
- Click Publish and confirm.
Warning
The request is valid for 90 seconds only.