clickForCode에 대한 리뷰
clickForCode 제작자: Ryan P. C. McQuen
리뷰 1개
- 5점 만점에 5점Firefox 사용자 14159132 님, 6년 전Thanks! Works.
Thanks to this addon I wrote script for Greasemonkey (https://addons.mozilla.org/ru/firefox/addon/greasemonkey/ ) that automatically adds to certain site:
(function() {
let link = location.href;
if (link.indexOf("website_that_needs_PRE_tag.com") != -1){
document.body.innerHTML = '' + document.body.innerHTML;
}
})();