Advertisement
This is comment for paste
Google Disable SafeSearch automatically
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- In case it gets lost or something, although it might already be outdated (I haven't tested it lately):
- // ==UserScript==
- // @name Google Disable SafeSearch automatically
- // @description Disable Google SafeSearch automatically
- // @namespace Mikhoul
- // @include http*://*.google.*/search*
- // @include http://*.google.*/imgres*
- // @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;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement