Simplified Wattpad

improves desktop wattpad reading experience for the ao3 nerds

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Simplified Wattpad
// @namespace    https://sharkcat.neocities.org
// @version      0.1
// @description  improves desktop wattpad reading experience for the ao3 nerds
// @author       sharkcat
// @match        https://www.wattpad.com/*
// @grant        none
// @require      https://code.jquery.com/jquery-3.7.0.min.js
// @license      gpl-3.0
// ==/UserScript==

// remove scrolling author|pfp
$("#sticky-nav").remove();

// remove "you are reading" top bar
$("#media-container").remove();

// shrinks gap between title and top of page
document.querySelectorAll('h1.h2')[0].style.margin = "5px 30px";

// make author not dissapear when page gets big
$("div").removeClass("hidden-lg");

// remove pfp next to author name
document.querySelectorAll('a.on-navigate.avatar.avatar-sm.center-block')[0].style.display = "none";

// adds username under title
$("div.author").insertAfter("h1.h2");

// trying to add space under author name
document.querySelectorAll('div.author')[0].style.margin = "0px 0px 20px 0px";

// remove comments from top stats
$("span.comments.on-comments").remove();

// trying to remove side comments
$("button.btn-no-background.comment-marker").remove();
//$("btn-no-background.comment-marker").remove();

// remove comments
$("div.row.part-content.part-comments").remove();

// remove you'll also like from bottom
$("div.container.similar-stories-container.similar-stories-footer").remove();

// remove add and vote buttons from bottom
$("#part-footer-actions").remove();

// remove side panel "youll also like"
$("h4.panel-title").remove();
$("#similar-stories.similar-stories").remove();

// trying to remove paid stories section at top of browse pages
$("#component-tagpagepaidstoriescontainer-tagpage-paid-stories-%2fstories%2ffantasy").remove();


// to do:
// remove side comments
// remove hoverable add comment
// remove paid content from browse pages