您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces the inline video "play" icon with a picture of a triangular fish (for logged-in members)
当前为
// ==UserScript== // @name MetaFilter inline video fishy icon // @namespace https://userscripts.org/users/413683/scripts // @version 2.0 // @description Replaces the inline video "play" icon with a picture of a triangular fish (for logged-in members) // @homepage https://userscripts.org/scripts/show/154921 // @include http://metafilter.com/* // @include http://*.metafilter.com/* // @include https://metafilter.com/* // @include https://*.metafilter.com/* // @match http://metafilter.com/* // @match http://*.metafilter.com/* // @match https://metafilter.com/* // @match https://*.metafilter.com/* // @grant none // ==/UserScript== // // Version 2.0: 2013-07-03 - Now works with the new "Use SSL everywhere" user // profile preference for logged-in MeFi members. Also added support for // automatic script updates, as well as better compatibility with Chrome. // // Version 1.0: 2012-12-25 - Grand opening. // // Original fish image design created by Everaldo Coelho and YellowIcon. // The image used in this script is a derivation from a vector version by // Wikimedia Commons user Mouagip (image licensed under LGPL): // <https://commons.wikimedia.org/wiki/File:Crystal_Clear_app_babelfish_vector.svg> // // This script was inspired by a MetaTalk comment from yellowbinder: // <http://metatalk.metafilter.com/22278/Now-you-can-close-the-comments#1043232> // Use jQuery to change the inline video player icon and its dimensions (px). // 'vid' is predominant class but 'lbOn' is used on MeFi Recent Comments page. var fishify = function () { $('a.vid img, a.lbOn img').attr({ width: '13', height: '14', src: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAoxJREFUeNpckl1Ik1EYx//vu/fLbbrJ3CSdGm5qS+mDvi6MvFAHxi68kCAV80KJCLoJAoOoi4Iy6K6wuwoqvAgz+tCiQjGnaB/Eyq25dHMp2qZO58f77nX2LCGkA+fmnPM7z//5P3+m/TCwuQmoKo5Z7faK8OTUAwsnB1vqAWUdkAGs0hYzAG3m1luWZQGGDrEBN8dpjlY2nBk2FNpvhMdxWeCQnbr/f7EMkaLEQdLyiZDXV2MrLctwXX98IWJvueKf5t7LSzjIc1sV/kEpCeadJdDnWJDUaV2egd7VNAnY23gWUs1tR0C2PVuPoVrgt0H0Q6WyJiOZTNhc5xq6LQVZJiXoAaOGkHdoFxyn7+6ISEdeKytwCvQZTzBrsmZXF5U7Ayaz8ZIoh6FPZ8BbqH02BiQzSEEuSk+2YXbNeisyBSwtMdA0HjDOlbvqLuYX7t7nH+xGSYUNgpUgTTE1oiEL+9E/6MOjPtkSGp0VI2H1LVvsyB1PTA1/y9KJsOmN0CZekJ1uIDENxF8SPIjg9CwWjGWovVrXlm4WO7iFX54CxwlnqSosg+UUIDoDCLQjcWDGRBLf4VRjHuq5dMSGF5XY74Sf4yW+aj7kWw4OjXao82p2frKoCfDTHD4BYRHIKaeKXoTdk2MjnWhdjuIDJwjo9Xd1v5kLKF4+U3TK+tYmcfM4ySJofxVUqQYD7c33IzNz5yUDoiuLW5b/EA0Gr56UKHG5z/fZ3RMbFeLyxB4gvwQ/++5MjI98b07LQpSlISMVo+3x4HWQx3o/1o7cu9nJmFcR//oEgZ6H1wwW8oba3UiFkAxNsSn4b0xEGpxGC1kymp9PDnn4iVdfnioriS6dfiu1Kk2CIeiPAAMAYE4AKsjUBWkAAAAASUVORK5CYII=' }); }; // Insert fishify script into page DOM (for Chromium compatibility). Assumes // the page has already loaded jQuery. var script = document.createElement('script'); script.type = "text/javascript"; script.textContent = '(' + fishify.toString() + ')();'; document.body.appendChild(script);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址