您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
show source mp4 link for soundgasm site
当前为
- // ==UserScript==
- // @name Download Links for soundgasm.net
- // @namespace https://chrome.google.com/webstore/detail/download-links-for-soundg/bchfdaafdfgamfakeigoopdkpkpjocmc
- // @version 0.0.4
- // @description show source mp4 link for soundgasm site
- // @match https://soundgasm.net/u/*/*
- // @copyright Don
- // ==/UserScript==
- //copy what Don did so well and updated to website and get it into a script.
- //Thank you Don I can't reach you but if you want me to take this down I'll be glad to
- (function () {
- var playerDiv = document.getElementById("jquery_jplayer_1");
- if (!playerDiv) {
- return;
- }
- function username () {
- var match = window.location.pathname.match(/\/u\/(.+)\/.+/);
- if (!match) {
- return "";
- }
- return match[1];
- }
- function title () {
- var e = document.querySelector(".jp-title").innerHTML;
- return e;
- }
- function filename (href) {
- var ext = href.match(/.+\.(.+)$/);
- if (!ext) {
- return username() + " - " + title();
- }
- return username() + " - " + title() + "." + ext[1];
- }
- var interval = setInterval(function () {
- var audio = document.getElementsByTagName("audio")[0];
- if (!audio && !audio.src) {
- return;
- }
- clearInterval(interval);
- var ul = document.querySelector(".jp-description ul");
- if (!ul) {
- return;
- }
- var li = document.createElement("li");
- var a = document.createElement("a");
- a.href = audio.src;
- a.innerText = "download";
- a.download = filename(audio.src);
- li.appendChild(a);
- ul.appendChild(li);
- }, 1000);
- })();