Turns out all you need is your personal "xf_session" cookie.
Here is the rule (well, two rules) - all you need to do is to replace the word
CENSORED with the value of your personal "xf_session" cookie then you're good to go:
Code:
[ {
"enabled" : true,
"cookies" : [ ["xf_session", "CENSORED"] ],
"updateCookies" : true,
"logging" : false,
"maxDecryptDepth" : 1,
"name" : "downloads.khinsider.com loggedin 1: Grab add_album URL",
"pattern" : "https?://downloads\\.khinsider\\.com/[^/]+/album/[^/]+",
"rule" : "DEEPDECRYPT",
"packageNamePattern" : null,
"passwordPattern" : null,
"formPattern" : null,
"deepPattern" : "\"(https?://downloads\\.khinsider\\.com/cp/add_album/\\d+)\"",
"rewriteReplaceWith" : null
},
{
"enabled" : true,
"cookies" : [ ["xf_session", "CENSORED"] ],
"updateCookies" : true,
"logging" : false,
"maxDecryptDepth" : 1,
"name" : "downloads.khinsider.com loggedin 2: Grab .zip files",
"pattern" : "https?://downloads\\.khinsider\\.com/cp/add_album/\\d+",
"rule" : "DEEPDECRYPT",
"packageNamePattern" : null,
"passwordPattern" : null,
"formPattern" : null,
"deepPattern" : "\"(https?://[^\"]+\\.zip)\"",
"rewriteReplaceWith" : null
} ]
Rule in plaintext to get around our forum's URL censoring:
pastebin.com/M4ZQ4Thq
-psp-
EDIT
In case you're wondering why some .zip files appear twice in your linkgrabber:
This rule will simply grab ALL .zip URLs which means if there is a mirror, it will be included as well.