Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Really good. But it'll work at client side through browser extension while it's real use would be at server side. Sorry for criticism..
-
devTea240886y@RememberMe that was calmifier, convert UPPERCASE to lowercase, should we merge it instead @joshbent?
-
When you read the screenshot content before headline and you try to figure out what "hearting" is xD
-
Does it detect and censor things like "I went into a bowel-eviscerating rage when the dimwitted client called me at 4am about an issue tinier than his ugly shriveled old cock, and told him to insert a cactus into his rectal opening"
-
devTea240886y@bittersweet ๐ you can add the badwords to filter out, I’ve made it as easy to config as possible
-
@devTea Awesome! Now all I need is a reverse filter, which replaces emojis with creative swears ๐
-
Wat d ๐ is going on here!!! Who replaced my f words with butterflies? ๐ฎ
I can't ๐ing hear myself clearly!
You seriously wanna ๐ with me. Bring it on!!! -
@athlon apple already has that covered most of the time I write something. Would love a patch to override that stupid fucking behaviour.
-
devTea240886y@Pogromist never made one before, ehh I just need to make js under 100 lines to make these stuff works anyway ๐
-
Just create manifest.json and put something like this
{
"manifest_version": 2,
"name": "",
"description": "",
"version": "1.0",
"content_scripts": [
{
"matches": ["http://example.com"],
"js": ["yourscript.js"]
}
],
"permissions": [ "activeTab" ]
}
Made this random script to remove swear words
https://github.com/devTeaa/...
random