Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
bug::if the download url has a + in it it errenously turns that into a space and cannot download it |
|
|
can you make it work with this userstyle?:http://userstyles.org/styles/916 however it may need to be fixed in the style, that may be more fiting |
|
|
These are the two statements I'm using for Demonoid-
// Demonoid format
if (url.match(/http:\/\/www\.demonoid\.com\/files\/download\/HTTP\//i)) {
return true;
}
// Demonoid format II
if (url.match(/http:\/\/www\.demonoid\.com\/files\/download\//i)) {
return true;
}
Someone else may find them useful :) |
|
|
If you search for the match() function in the script, you can add an if statement like so:
You will need to replace the stuff between the parens after match with an expression to match your site's URL. I can't get access to the download pages of the sites you posted to find that format though so you are own your own i'm afraid unless you can post some example urls of download links. |
|
|
How i can add support for torrent-communities like http://www.tntvillage.org/?act=allreleases and http://colombo-bt.org/index.php?action=torrents ? I am not very good at coding :( Can you help me please? |