Firefox greasemonkey script for WebUi
Posted: Fri Oct 17, 2008 9:29 pm
firefox greasemonkey script.
This script will add an icon to any torrent , if you click on the icon you will add the torrent to deluge using the webui.
http://userscripts.org/scripts/show/12639
Comments are welcome.
You can propose new/unsupported trackers.
But they will only be added fast if you can post regular expression match like this:
This script will add an icon to any torrent , if you click on the icon you will add the torrent to deluge using the webui.
http://userscripts.org/scripts/show/12639
Comments are welcome.
You can propose new/unsupported trackers.
But they will only be added fast if you can post regular expression match like this:
Code: Select all
//Gazelle :
if (url.match(/http:\/\/.*\/torrents\.php\?action\=download/i)) {
return true;
}