您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add Animoto download link
// ==UserScript== // @name Animoto Download // @namespace https://animoto.com/ // @include https://animoto.com/* // @version 0.1 // @description Add Animoto download link // @author Daniel Shanklin // @grant none // @run-at document-end // ==/UserScript== start(); function start() { var elements = document.getElementsByClassName('h4 small'), n = elements.length; for (var i = 0; i < n; i++) { var e = elements[i]; run(e); } } function run(e) { if (!document.getElementById("parentButton")) { var parentButton = document.createElement("div"); parentButton.className = "blabla"; parentButton.id = "parentButton"; parentButton.style = "height: 23px;margin-left: 28px;padding-bottom:1px;"; parentButton.onclick = function() { //this.style = "display:none"; }; e.appendChild(parentButton); var childButton = document.createElement("a"); childButton.appendChild(document.createTextNode("Click here to download Animoto Video as MP4")); childButton.className = "blabl2"; childButton.style = "line-height: 25px;font-size: 24px; color: red; text-decoration: underline;"; var VidID = window.location.href; VidID = VidID.replace("https://animoto.com/play/", ""); childButton.href = "http://s3-p.animoto.com/Video/" + VidID + "/360p.mp4"; parentButton.appendChild(childButton); } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址