[Pkg-chromium-maint] Bug#749564: filed upstream + workaround

Jason Woofenden jason at jasonwoof.com
Thu May 29 05:15:36 UTC 2014


OK, I filed it upstream: https://code.google.com/p/chromium/issues/detail?id=378641

Oh, and here's the tempermonkey script I'm using as a workaround:

	// ==UserScript==
	// @name       Workaround for #749564
	// @namespace  http://use.i.E.your.homepage/
	// @version    0.1
	// @description  turn DDG forms into GET methods
	// @match      https://duckduckgo.com/html/*
	// @copyright  2012+, You
	// ==/UserScript==

	(function() {
    	    var i;
    	    var forms = document.getElementsByTagName('form');
    	    for (i in forms) {
        	   forms[i].method = 'get';
    	    }
	})();

-- 
Jason



More information about the Pkg-chromium-maint mailing list