Vkontakte music download

Just right click on audio 'play' button and download will start. Для загрузки просто кликните правой кнопкой по иконке воспроизведения.

// ==UserScript==
// @name           Vkontakte music download
// @namespace      [email protected]
// @description    Just right click on audio 'play' button and download will start. Для загрузки просто кликните правой кнопкой по иконке воспроизведения.
// @include        http://vkontakte.ru/*
// @include        http://vk.com/*
// @include        https://vk.com/*
// @version        2.0.4
// @grant          none
// ==/UserScript==

var script = document.createElement('script'); 
script.type = "text/javascript";
function startDl(link)
{
	var dlEl=document.createElement('a');
	dlEl.setAttribute('target', '_blank');
	dlEl.setAttribute('download', 'Music.mp3');
	dlEl.href=link;
	dlEl.style.display='none';
	document.body.appendChild(dlEl);
	dlEl.click();
	document.body.removeChild(dlEl);
};
window.oncontextmenuDL=function(dlLink)
{
	if (dlLink.match('/.mp3'))
	{
		var ids = e.target.id.replace(/[a-zA-Z]/g,'').split('_');
		ajax.post('audio', {act: 'reload_audio', owner_id: ids[0], audio_id: ids[1]}, 
		{
			onDone: function(res) 
			{
				if (res) 
				{
					startDl(res[0]);
				}
			}
		}
		);
	}
	else
	{
		startDl(dlLink);
	}
	return false;
};

window.oncontextmenu=function(e)
{
	if (e.target.classList.contains("play_new") && e.button==2 && window.oncontextmenuDL)
	{
		var dlLink=e.target.parentNode.nextElementSibling.value.match(/http.*mp3/)[0];
		return window.oncontextmenuDL(dlLink);
	}
	if ((["head_play_btn", "ac_play", "gp_play"].indexOf(e.target.id)!=-1) && e.button==2 && window.oncontextmenuSA) return window.oncontextmenuSA(e);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址