您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
If the change to achievements also annoys you and you find yourself clicking it... welp, no more
// ==UserScript== // @name Flight Rising: Swap achievements link back to lair in profile section // @author https://greasyfork.org/en/users/547396 // @description If the change to achievements also annoys you and you find yourself clicking it... welp, no more // @namespace https://greasyfork.org/users/547396 // @match *://*.flightrising.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=flightrising.com // @grant none // @version 0.2 // ==/UserScript== (function() { 'use strict'; var ach = document.querySelector('#usertab a[href="https://www1.flightrising.com/achievements"'); var wing_icon = 'https://www1.flightrising.com/static/cms/icons/48.png'; ach.setAttribute('href', 'https://www1.flightrising.com/lair/'); ach.innerHTML = '<img src="'+ wing_icon +'"/> Lair'; })();