您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
filter your repo star/fork information
// ==UserScript== // @name Github index filter // @namespace http://tampermonkey.net/ // @version 0.2 // @description filter your repo star/fork information // @author https://github.com/iMeiji // @match https://github.com/* // @grant none // @run-at document-end // ==/UserScript== // enter your GitHub username const yourGitHubUserName = "iMeiji"; (function () { 'use strict'; var regex = `^\\/(${yourGitHubUserName})\\/([^\\s]*)`; const observer = new MutationObserver(main); let article = document.body; let options = { 'subtree': true, 'attributes': true }; observer.observe(article, options); function remove(startList, root) { let removeArr = []; for (let fork of startList) { let list = fork.getElementsByClassName("f4 lh-condensed text-bold text-gray-dark"); let a = list.item(0).getElementsByTagName("a"); let h = a.item(0).getAttribute("href"); if (h.search(new RegExp(regex)) !== -1) { console.log(h); removeArr.push(fork); } } removeArr.map((value) => { value.parentNode.removeChild(value); }); } function main() { let root = document.getElementsByClassName("news"); let forkList = root.item(0).getElementsByClassName("fork"); let startList = root.item(0).getElementsByClassName("watch_started"); remove(forkList, root); remove(startList, root); } })();