Shows the hover title immediately and the red button panel after a delay to help reading the Saturday Morning Breakfast Cereal web comics.
SMBC-comics reading helper 스크립트가 다음 사유로 삭제되었습니다: 신고 #30683.
작성자가 제출한 이의 제기 사유:
Report #30683 says:
Script is similar to previously deleted scripts:
EL CHUPACABRAS ARG Diff 1 MRModPack Diff 1
I wrote the script "SMBC-comics reading helper" from scratch and I can't see how these previously deleted scripts are similar to my script and why they were deleted.
My script uses title
attribute from content on the page to add text to pages like https://www.smbc-comics.com/comic/file and simulates a click on the red button. Both of these features are for ease of reading these web comics. The code overall is pretty trivial:
(function() {
'use strict';
$(document).ready(() => {
if ($("#cc-comic").length > 0) {
const text = $("#cc-comic").prop('title');
$('#cc-comicbody').append(`<div style="clear:both;"><span style="font-family:'Comic Sans MS';font-size:150%;">${text}</span></div>`);
}
setTimeout(() => {
$('#extracomic').click();
}, 2000);
});
})();
이 이의 제기의 결과로 관리자가 이 스크립트를 복구했습니다.