Try   HackMD

同源網域下修改 Iframe 的 style

 $("iframe").on("load", function() {
     const newStyleElement = $("<style>.foo{display: none;}</style>");       
     $(this).contents().find("head").append(newStyleElement);
});