UPDATE: fixed avatar distortion
UPDATE 2: see this post for updated code
Too lazy for Github, so
1. Make folder called "kf suit bypass"
2. Make file called "manifest.json" and copy/paste this code
into it
3. Make file called "modder.css" and copy/paste this code
into it
4. Go to "More Tools->Extensions", enable dev mode, click "Load unpacked", and select the folder
5. ????
6.
7. PROFIT!!!
UPDATE 2: see this post for updated code
Too lazy for Github, so
1. Make folder called "kf suit bypass"
2. Make file called "manifest.json" and copy/paste this code
JSON:
{
"manifest_version": 2,
"name": "KF Suit Bypass",
"version": "1.0",
"description": "Removes hazmat suits from Kiwi Farms avatars",
"permissions": ["activeTab"],
"content_scripts": [
{
"matches": ["https://kiwifarms.net/*"],
"css": ["modder.css"]
}
]
}
3. Make file called "modder.css" and copy/paste this code
CSS:
span.avatar::before, a.avatar::before {
background-size: 0px !important;
}
a.avatar img:not(.cropImage) {
border-radius: 0px !important;
}
/*update: avatar distortion fix below*/
a.avatar {
display: initial !important;
}
4. Go to "More Tools->Extensions", enable dev mode, click "Load unpacked", and select the folder
5. ????
6.
7. PROFIT!!!
Last edited: