No Coronavirus のレビュー
No Coronavirus 作成者: Daggron
合計レビュー数: 8
- 5 段階中 5 の評価Sarhan Dadier によるレビュー (6年前)Отличное дополнение. Мне тоже надоедо видеть информацию о вирусе на всех сайтах. Автору спасибо!
- 5 段階中 3 の評価Display Name * によるレビュー (6年前)
- 5 段階中 1 の評価Firefox ユーザー 11323234 によるレビュー (6年前)Works okay, but it only censors the word, it doesn't do anything else than that. It also doesn't censor covid-19 and it also has been blocking words that start with co, like "community" or "cover". Only would recommend if you have a weird fear of the word; coronavirus.
開発者の返信
投稿日時: 6年前Hey, We have added new testcases and the new version is updated now it blocks covid-19 and this bug is fixed - 5 段階中 5 の評価Koob parcs によるレビュー (6年前)Excellent addon, a simple JavaScript that replace Corona related words by ░░█▒ █▒▒ █▓▓░.
Here is the code source from https://github.com/Daggron/No-coronavirus :
replaceText(document.body);
function replaceText(element) {
if (element.hasChildNodes()) {
element.childNodes.forEach(replaceText)
} else if (element.nodeType === Text.TEXT_NODE) {
element.textContent = element.textContent.replace(/coronavirus|CoV-2|[cC][oO][vV][iI][dD]\-19|[sS][aA][rR][sS]|[cC][oO][rR][oO][nN][aA][vV][iI][rR][uU][sS]|[cC][oO][rR][oO][nN][aA]|[vV][iI][rR][uU][sS]|[cC][oO][vV][iI][dD]|[sS][aA][rR][sS]\-[cC][oO][vV][iI][dD]\-19|[sS][aA][rR][sS]\-[cC][oO][vV][iI][dD]\-19\-2|[sS][aA][rR][sS]\-[cC][oO][vV]\-2|2019\-[nN][cC][oO][vV]|CoV/gi, '░░█▒ █▒▒ █▓▓░');
}
}開発者の返信
投稿日時: 6年前Thanks we have already submitted the new version for review it will be rolling out soon