Greasy Fork is available in English.

Discord Keyword Notification -updated

Displays a windows notification whenever a user mentions specific textual word(s) in a channel. The script must be manually edited to configure the keywords.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
noxtrip
일일 설치수
0
총 설치수
133
평점
2 0 0
버전
1.0.0
생성
2022-08-05
갱신
2022-08-05
라이선스
GNU AGPLv3
동작 사이트

With my limited knowladge of web dev I just altered original script (https://greasyfork.org/en/scripts/373445-discord-keyword-notification/code) by jcunews to make it work as it was not working for me.

Do not try to ask me to update it i just spend two hours to make it work and be done with it.

Important notes:
-I tested in on Chrome and Edge browsers. Notifications did not work on firefox.
-Sometimes script doesnt seem to initialize properly. Best way to make sure it works is to open the URL to discord channel you want to monitor directly in browser
-There is no timeout on notification. Probably can be added i dont care.
-Windows notification are displayed. No idea if other OS will work.
-You define what words are you looking for here: var keywordsRegexp = /leech|snip/gi;
-in this example notification will be sent if string leech OR snip will be found in a message. /gi means that search is case insensitive
-if i would like to search only for "january" it should look like this keywordsRegexp = /january/gi;
-if i would like to search for "jan" "feb" "march" then keywordsRegexp = /jan|feb|march/gi;
-see tutorials for regexp if need more sofisticated things for me simple match word was enough