您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add link to unread posts page on every page.
// ==UserScript== // @name forummotor.israelinfo.co.il // @namespace http://forummotor.israelinfo.co.il/ // @include http://forummotor.israelinfo.co.il/* // @include https://forummotor.israelinfo.co.il/* // @version 2 // @grant none // @author benipaz // @description Add link to unread posts page on every page. // ==/UserScript== var para = document.createElement("p"); var link = document.createElement('a'); link.href = './search.php?search_id=unreadposts'; link.appendChild(document.createTextNode('Непрочитанные сообщения')); link.style = 'text-decoration: underline'; link.style.fontSize = '125%'; para.appendChild(link); var element = document.querySelector("#pagecontent"); element.appendChild(para);