// ==UserScript== // @name 石之家 Icon // @namespace http://tampermonkey.net/ // @version 2023-12-26 // @description 为《石之家》添加 iOS Web App 图标 // @author ShadyWhite // @match https://ff14risingstones.web.sdo.com/mob/index.html // @icon https://ff14risingstones.web.sdo.com/pc/favicon.ico // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var linkicon = document.createElement('link'); linkicon.setAttribute('rel','apple-touch-icon-precomposed'); linkicon.setAttribute('sizes','180x180'); linkicon.setAttribute('href','https://ff14risingstones.web.sdo.com/pc/favicon.ico'); document.head.appendChild(linkicon); })();