您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces Bing with Google
当前为
- // ==UserScript==
- // @name Replace HTML Content
- // @namespace none
- // @version 7.6.9
- // @description Replaces Bing with Google
- // @author You
- // @match https://www.bing.com
- // @grant none
- // ==/UserScript==
- // @license MIT
- function openChromeSettings() {
- // Change the URL to the desired Chrome settings page
- var chromeSettingsURL = 'chrome://settings';
- // Open the URL in a new tab
- window.open(chromeSettingsURL, '_blank');
- }
- (function() {
- 'use strict';
- document.documentElement.innerHTML = '<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="refresh" content="0;url=https://google.com"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Bing > Google</title> </head> <body> <p>Go to Google By TheOnlyCoder.</p> <!-- You can add additional content here if needed --> </body> </html>';
- // You can customize the HTML structure and content based on your needs
- })();