blob: f7f075a2a47c47b07f88831ae0f2080dcd3e467c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# This small script adds a "quick whois" button to every query window
event(OnQueryWindowCreated,queryquickwhois)
{
button(w,queryquickwhois,88,"Quick whois (with idle time)")
{
if($target != "")
{
foreach(%x,$target)whois %x %x
}
}
}
alias(queryquickwhois_uninstall)
{
event(OnQueryWindowCreated,queryquickwhois){}
alias(queryquickwhois_uninstall){}
}
echo "Query-quick-whois script installed."
echo "Use /queryquickwhois_uninstall to remove it."
|