clickForCode

clickForCode

Click to add a <pre> tag inside the HTML <body>.

Total ratings for clickForCode
5.00 (Rating count: 1)
Merlin
See reviews for clickForCode on Firefox Browser Add-ons
Recent reviews for clickForCode
Recent rating average: 5.00
All time rating average: 5.00
Rating filters
5 star
100% (1)
4 star
0%
3 star
0%
2 star
0%
1 star
0%
Date Author Rating Comment
2019-08-04 Firefox user 14159132 Thanks! Works. Thanks to this addon I wrote script for Greasemonkey (https://addons.mozilla.org/ru/firefox/addon/greasemonkey/ ) that automatically adds <pre> to certain site: (function() { let link = location.href; if (link.indexOf("website_that_needs_PRE_tag.com") != -1){ document.body.innerHTML = '<pre style="font-family: Verdana; white-space: pre-wrap;">' + document.body.innerHTML; } })();