您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
用于访问网易新闻评论区
// ==UserScript== // @name 网易新闻评论 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 用于访问网易新闻评论区 // @author You // @match https://c.m.163.com/news/a/*.html* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @require https://code.jquery.com/jquery-3.1.1.min.js // @license MI // ==/UserScript== (function() { 'use strict'; // Your code here... setTimeout(function(){ var href = window.location.href; var commentUrl = 'https://comment.tie.163.com' + href.substring(href.lastIndexOf('/')); var html = '<div class="comment-footer"><a href="' + commentUrl + '" target="_self">⌨️👶查看评论</a></div>'; $(".comment-footer").parent().append(html); }, 1000); })();