您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Download m4a audio files from soundgasm.net
// ==UserScript== // @name Soundgasm Ripper // @namespace rus0 // @description Download m4a audio files from soundgasm.net // @include https://*soundgasm.net/* // @version 1.1 // @grant none // ==/UserScript== //set styles $("head").append('<style type="text/css"> #getgasm a { font-size:20px;color:green;text-decoration:none;font-weight:bold;margin-left:200px; } li:last-child { list-style-type: none; } </style>'); //find link var gwa = $("html").html(); var gasm = gwa.split('m4a: "')[1].split('"')[0]; //insert download link var gasmLink = '<li><span id="getgasm" title="Right-Click for Save Link"><a href="' + gasm + '" download="' + gasm + '" style="" target="_blank">Download<img src="http://i.imgur.com/BXHgoMy.gif" style="width:25px;"></a></span></li>'; $("nav").append(gasmLink);