This is just a small and simple script to remove this limitation.
Script Snippet
// ==UserScript== // @name Blogger BlogTrap Removal // @description Removes Preview Trap when previewing Pages/Posts on Blogger // @namespace http://awtmk.blogspot.com/ // @include http://www.blogger.com/html?blogID=* // @include http://*.blogspot.com/b/post-preview* // @source ... // @version 1.0.0 // @date 2010-11-17 // ==/UserScript== (function () { document.getElementsByClassName("blogger-clickTrap")[0].style.display = "none"; })();In case you don't want Greasemonkey you can bookmark the following javascript instruction:
javascript:document.getElementsByClassName("blogger-clickTrap")[0].style.display = "none"; void(0);
1 comments :
I forgot to create one at UserScripts.
Once I do I put just a nice, Install button.
Post a Comment