您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Small enhancements for the Magog forums.
// ==UserScript== // @name Magog Enhancements Hoard // @description Small enhancements for the Magog forums. // @namespace http://the-magog-forum.freeforums.net // @include http://the-magog-forum.freeforums.net/* // @version 1 // @grant none // ==/UserScript== setTimeout(function() { $(document).ready(function(){ // Adds a Notifications entry on the menu, next to Profile var $profileMenu = $('ul[role=navigation] > li').eq(5); var profileLink = $profileMenu.find('a').attr('href'); $profileMenu.after('<li><a href="'+ profileLink +'/notifications">Notifications</a></li>'); }); }, 20);