您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds search on other sites for google, bing, and yahoo
当前为
- // ==UserScript==
- // @name altsearch links
- // @description Adds search on other sites for google, bing, and yahoo
- // @version 0.1.4
- // @include http://www.google.com*
- // @include https://*.google.com*
- // @include http://www.google.com*
- // @include https://www.google.com*
- // @include https://duckduckgo.com*
- // @include http://duckduckgo.com*
- // @include http://www.wolframalpha.com*
- // @include http://www3.wolframalpha.com*
- // @include http://yandex.ru*
- // @include http://nigma.ru*
- // @include http://www.bing.com*
- // @include https://www.bing.com*
- // @include http://ru.wikipedia.org/w/*
- // @include http://nova.rambler.ru/*
- // @include http://rambler.ru/*
- // @include http://scholar.google.com*
- // @include http://search.yahoo.com*
- // @include https://search.yahoo.com*
- // @include http://academic.research.microsoft.com/*
- // @grant none
- // @namespace https://greasyfork.org/users/9631
- // ==/UserScript==
- //document.addEventListener("DOMContentLoaded", function () {
- //had to comment this out to get it to work no idea why...
- var SEARCH_ON = 'Search on:';
- var POSITION = 'left';
- var PLACEHOLDER_SELECTORS = '#resultStats, .sb_count, .b-wordstat__text, .searchresults b, #ext_link, #sidebar, .b-global-wrapper, #gs_ab, #left, #zero_click_wrapper, bing-summary, .bing-summary, #bing-summary';
- //var PLACEHOLDER_SELECTORS = '#resultStats, .sb_count, .b-wordstat__text, .searchresults b, #ext_link, #sidebar, .b-global-wrapper';
- var results = document.querySelector(PLACEHOLDER_SELECTORS);
- other = document.createElement('div');
- other.setAttribute("style", "width: 1000px; font-size: small; margin: 10px 10px 5px 159px;");
- if (window.location.href.indexOf("?query=") > -1) {
- query = window.location.href.match(/\?query=[^&]*/gi)[0].substr(7);
- } else if (window.location.href.indexOf("?q=") > -1) {
- query = window.location.href.match(/\?q=[^&]*/gi)[0].substr(3);
- } else {
- query = window.location.href.match(/\?p=[^&]*/gi)[0].substr(3);}
- query = query.replace(/\+filterui%3[^&^+]*/gi,"");
- links = "Try this search on " +
- "<a href =\"https://www.google.com/search?q=" + query + "\">Google</a>, " +
- "<a href =\"http://www.bing.com/search?q=" + query + "\">Bing</a>, " +
- "<a href =\"http://search.yahoo.com/search?p=" + query + "\">Yahoo</a>, " +
- //"<a href =\"http://web.ask.com/web?q=" + query + "\">Ask</a>, " +
- "<a href =\"https://duckduckgo.com/?q=" + query + "\">DuckDuckGo</a>, " +
- "<a href =\"http://www.wolframalpha.com/input/?i=" + query + "\">WolframAlpha</a>, " +
- "<a href =\"http://twitter.com/search?q=" + query + "\">Twitter</a>, " +
- "<a href =\"http://scholar.google.com/scholar?q=" + query + "\">Google Scholar</a>, " +
- "<a href =\"http://academic.research.microsoft.com/Search?query=" + query + "\">MS Academic</a>";
- other.innerHTML = links;
- results.parentNode.insertBefore(other, results);
- //}, false);