您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds the very important title of the XKCD Strips below the picture.
当前为
// ==UserScript== // @name XKCD Title // @namespace http://jellefresen.nl/XKCD // @description Adds the very important title of the XKCD Strips below the picture. // @include http://xkcd.com/* // @include http://www.xkcd.com/* // @exclude http://xkcd.com/archive // @exclude http://www.xkcd.com/archive // @exclude http://xkcd.com/store // @exclude http://www.xkcd.com/store // @exclude http://xkcd.com/about // @exclude http://www.xkcd.com/about // @version 0.0.1.20140705065009 // ==/UserScript== var image = document.getElementById("middleContent").getElementsByTagName('img')[0]; // create a div that is invisible and becomes visible when the mouse hovers over it var title_text = document.createElement("div"); title_text.setAttribute('style', 'margin: auto; width:70%; color:#ffffff; font-size:small; font-style:italic'); title_text.setAttribute('onMouseOver','this.style.color=\'#000000\''); title_text.setAttribute('onMouseOut', 'this.style.color=\'#ffffff\''); // apply a bold "Title: " var title_header = document.createElement("b"); var title_header_content = document.createTextNode("Title: "); title_header.appendChild(title_header_content); title_text.appendChild(title_header); // add the Title text var title_content = document.createTextNode(image.title); title_text.appendChild(title_content); // Throw it after the big picture var root = image.parentNode; var next = image.nextSibling; root.insertBefore(document.createElement("br"), next); root.insertBefore(title_text, next); root.removeChild(next); //.user.js
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址