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.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

作者
Peter Bučka
今日安裝
0
安裝總數
164
評價
2 0 1
版本
1.0.0
建立日期
2022-08-05
更新日期
2022-08-05
尺寸
2.9 KB
授權條款
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