it will disable Google SafeSearch automatically
Tính đến
// ==UserScript==
// @name Disable Google SafeSearch automatically
// @namespace Disable Google SafeSearch automatically
// @author Rishabh
// @include https://www.google.*/search*
// @include https://www.google.*/imgres*
// @description it will disable Google SafeSearch automatically
// @version 1.01
// @grant none
// ==/UserScript==
var url = window.location.href;
var safe = "&safe=off";
if(url.indexOf(safe) == -1){
url += safe;
window.location = url;
}