您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add direct links to Github repositories when browsing awesomeopensource.com
当前为
// ==UserScript== // @name Fuck awesomeopensource.com // @description Add direct links to Github repositories when browsing awesomeopensource.com // @icon https://i.ibb.co/vw2zQSh/fuck-awesome.png // @namespace https://github.com/peterrauscher // // @include https://awesomeopensource.com/projects/* // @match http://*.example.com/* // // @require http://code.jquery.com/jquery-1.8.0.min.js // // @run-at document-end // @version 0.0.1.20230411124804 // ==/UserScript== (function() { Array.from(document.querySelectorAll(".aos_project_copntainer .aos_project_title a")).forEach((e) => { e.href = e.href.replace("https://awesomeopensource.com/project", "https://github.com"); }); })();