您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirect you to Qwant Services
- // ==UserScript==
- // @name Qwant Search Engine for Opera
- // @namespace https://github.com/LePliex/Qwant-Search-Engine-for-Opera-Browser
- // @version 1.0
- // @description Redirect you to Qwant Services
- // @author LePliex (https://github.com/LePliex)
- // @match https://duckduckgo.com/*
- // @icon https://i.imgur.com/2pLe6tY.png
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function() {
- document.querySelector("html").remove();
- document.appendChild(document.createElement("html"));
- document.querySelector("html").style.background = "#1c1c1c";
- let URL = window.location.href;
- let fSplit = URL.split("&");
- let sSplit = fSplit[0].split("=");
- let pSplit = sSplit[1].split("+");
- let final = "";
- let Maps = new RegExp('QMaps');
- let Music = new RegExp('QMusic');
- if (sSplit[0] === "" || sSplit[1] === undefined) {
- window.location.href = "https://www.qwant.com/";
- } else if (sSplit[1].match(Music)) {
- if (sSplit[1] != undefined) {
- for (let i = 1; i < pSplit.length; i++) {
- final += "%20" + pSplit[i];
- }
- window.location.href = "https://www.qwant.com/music/search?q=" + final;
- } else {
- window.location.href = "https://www.qwant.com/music";
- }
- } else if (sSplit[1].match(Maps)) {
- if (sSplit[1] != undefined) {
- for (let i = 1; i < pSplit.length; i++) {
- final += "%20" + pSplit[i];
- }
- window.location.href = "https://www.qwant.com/maps?q=" + final;
- } else {
- window.location.href = "https://www.qwant.com/maps";
- }
- } else {
- window.location.href = "https://www.qwant.com/?q=" + sSplit[1];
- }
- 'use strict';
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址