Fix old FR site titles

Fixes page titles for old site

// ==UserScript==
// @name        Fix old FR site titles
// @namespace   flight_titles
// @description Fixes page titles for old site
// @include     http://flightrising.com/main.php?p=*
// @version     1
// @grant       none
// ==/UserScript==

$(document).ready(function(){
  var foo = document.title;
  if (foo == "Flight Rising") {
    var bar = $($("span[style*='font-size:22px;']").contents()[0]).text();
    document.title = bar+" | "+foo;
  };
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址