体验微软AI

体验微软人工智能举例,比chatgpt的gpt3版本更高的GPT-3.5,使用必应时自动提示 TG频道:https://t.me/data_share2021

目前为 2023-02-14 提交的版本。查看 最新版本

// ==UserScript==
// @name 体验微软AI
// @namespace https://www.bing.com/
// @version 0.4
// @description 体验微软人工智能举例,比chatgpt的gpt3版本更高的GPT-3.5,使用必应时自动提示 TG频道:https://t.me/data_share2021
// @author skycloud
// @license MIT
// @match https://www.bing.com/*
// @include https://www.bing.com/search*
// @grant none
// ==/UserScript==

(function() {
'use strict';


// Find the suggestion list container
const suggestionList = document.querySelector('.b_autocomplete');
if (!suggestionList) {
    return;
}

// Listen for mouse over event on each suggestion item
suggestionList.addEventListener('mouseover', function(event) {
    const target = event.target;

    // Check if the target is a suggestion item
    if (!target.matches('.b_autocomplete li')) {
        return;
    }

    // Get the suggestion text and create a button element
    const suggestionText = target.textContent;
    const button = document.createElement('button');
    button.textContent = suggestionText;
    button.addEventListener('click', function() {
        window.location.href = 'https://www.bing.com/search?q=' + encodeURIComponent(suggestionText);
    });

    // Replace the suggestion text with the button
    target.textContent = '';
    target.appendChild(button);
});
})();

QingJ © 2025

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