Skip to content

Instantly share code, notes, and snippets.

@h-collector
Last active December 27, 2015 21:19
Show Gist options
  • Save h-collector/7390658 to your computer and use it in GitHub Desktop.
Save h-collector/7390658 to your computer and use it in GitHub Desktop.
Download video from toukoucity.to and translate category
//beforeall
;(function($) {
if (typeof jQuery.fn.socialbutton === 'undefined'){
$.fn.extend({
socialbutton: function(type, options) {
return $(this);
}
});
}
})(jQuery);
//onready
jQuery(function($){
$('#player_ad, .banbox').remove();
if (typeof so !== 'undefined'){
var file = so.getVariable('file'),
id = file.match(/\/([^\/]+)\/video.mp4$/)[1],
h2 = $('h2.titles'),
title = 'tk' + id + ' - ' + h2.text();
h2.html(
$('<a/>')
.attr('href', file + '/' + title)
.text(title)
.css({display:'block'})
.append($('<b> (DL)</b>').css({color:'red'}))
);
}
//translate
var translation = {
"1": "AV Actress",
"2": "Gal",
"3": "entertainer",
"4": "Amateur",
"5": "sister series",
"6": "schoolgirl",
"7": "Mature Housewife",
"47": "incest",
"8": "Slut-Sister",
"9": "Lesbian",
"10": "OL",
"11": "Pretty Idol",
"46": "muscle athletes",
"12": "sex",
"13": "blonde-foreigner",
"14": "Cosplay",
"15": "SS, bloomers, unders",
"16": "Big",
"17": "Small Tits",
"18": "Breasts",
"19": "Shaved",
"20": "Anal",
"21": "Creampies",
"22": "fellatio",
"23": "Deep",
"45": "Sliding",
"24": "Handjobs, Footjob",
"25": "Fucking",
"26": "bukake",
"27": "lotion",
"28": "Vibe-tool",
"29": "Drilling",
"30": "3P · orgy",
"31": "Squirting",
"32": "Hidden Cam",
"33": "outdoor-exposure",
"34": "rape",
"35": "SM · Rape",
"36": "Cat Fight",
"37": "Scat",
"38": "enema and injection",
"39": "The Masturbation-ego",
"40": "POV",
"41": "IHappeningSys",
"42": "Anime",
"43": "gay",
"44": "Others"
};
$('#menubox li a').each(function(){
var $this = $(this), id = $this.attr('href').match(/\d+$/);
if (id && typeof translation[id[0]] !== undefined) {
$this.text(translation[id[0]]);
}
});
})/*(jQuery)*/;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment