// ==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 // @downloadURL none // ==/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 = ''; $(".comment-footer").parent().append(html); }, 1000); })();