Changes pagination direction from LTR to RTL by setting CSS properties.
// ==UserScript==
// @name bdsmlr move Previous Next Page changer to the left
// @namespace Violentmonkey Scripts
// @version 1.0
// @description Changes pagination direction from LTR to RTL by setting CSS properties.
// @author grok
// @match https://*.bdsmlr.com/*
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Customize this selector to target the pagination container on your site
// For example: '.pagination', '#paginator', '.page-nav', etc.
const paginationSelector = '.paginatelinks';
// Add CSS to reverse the direction
GM_addStyle(`
${paginationSelector} {
float: left !important;
}
`);
})();