Kemer Enhancement

Beautify the interface and re-layout, including removing ads and redundant banners, correcting artist names and editing related information retention, automatically loading original images, setting image size and spacing in the menu, triggering automatic scrolling with hotkeys, parsing links in the text and converting them to clickable links, fast page switching and jumping functions, and redirecting to a new tab

< Feedback on Kemer Enhancement

Review: Good - script works

§
Posted: 2023-08-11

Nice script but please make open in new page optional.

Canaan HSAuthor
§
Posted: 2023-08-11

In the future, there will be time to develop a settings menu. But for now, if you want to disable the option to open in a new tab, you can search for the function "NewTabOpens();" in the code. Then locate the code block:

addlistener(link, "click", event => {
     event.preventDefault();
     GM_openInTab(link.href, { active: false, insert: true });
})

You can either comment out or remove this code block to disable this functionality.

Post reply

Sign in to post a reply.