Greasy Fork

Greasy Fork is available in English.

自定义网页标题内容

2024/3/19 11:23:41

当前为 2024-04-24 提交的版本,查看 最新版本

// ==UserScript==
// @name        自定义网页标题内容
// @namespace   Violentmonkey Scripts
// @match       https://m.ithome.com/*
// @match       https://web.telegram.org/*
// @grant       none
// @version     1.1
// @author      hoorn
// @icon        https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico?v=ec617d715196
// @description 2024/3/19 11:23:41
// @license      GPL-3.0 License
// ==/UserScript==
(function () {
  'use strict';
  // 获取页面标题元素
  var pageTitle = document.querySelector('title');

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

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

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

  favicon.href = 'https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico?v=ec617d715196';

})();