Greasy Fork

Greasy Fork is available in English.

自定义网页标题

可以用来自定义网页标题

当前为 2024-03-19 提交的版本,查看 最新版本

// ==UserScript==
// @name        自定义网页标题
// @namespace   Violentmonkey Scripts
// @match       https://m.ithome.com/*
// @grant       none
// @version     1.0
// @author      hoorn
// @icon        https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico?v=ec617d715196
// @run-at      document-start
// @license     MIT
// @description 可以用来自定义网页标题
// ==/UserScript==
(function () {
    'use strict';
    // 获取页面标题元素
    var pageTitle = document.querySelector('title');

    // 修改标题文本
    pageTitle.textContent = 'FStack Overflow - Where Developers Learn, Share, & Build Careers';

    // 获取 <link> 元素
    var linkElement = document.querySelector('link[rel="icon"]');

    // 修改 href 属性
    linkElement.href = 'https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico?v=ec617d715196';

})();