DC - Bouge ta feuille

Rend la lecture plus agréable en permettant de déplacer plus facilement une feuille

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name DC - Bouge ta feuille
// @namespace InGame
// @author Nasty
// @date 21/10/2022
// @version 1
// @license DBAD - https://raw.githubusercontent.com/philsturgeon/dbad/master/translations/LICENSE-fr.md
// @include https://www.dreadcast.net/Main
// @include https://www.dreadcast.eu/Main
// @compat Firefox, Chrome
// @description Rend la lecture plus agréable en permettant de déplacer plus facilement une feuille
// ==/UserScript==

$(document).ajaxSuccess(function(e, xhr, opt){
    if (opt.url.includes("/Informations/Page")) {
        $("#livre_principal").append("<div class=glisse-feuille></div>")
        $(".glisse-feuille").css({'position' : 'absolute', 'bottom' : '0', 'right' : '0' , 'user-select' : 'none', 'color' : '#fff', 'font-size' : '12px', 'height' : '18px', 'width' : '18px','background-color' : 'rgba(145,145,145,1)', '-webkit-box-shadow' :'5px 5px 5px 5px rgba(0,0,0,0.65)', 'box-shadow' : '0px 0px 5px 5px rgba(0,0,0,0.65)', 'background-image' : 'url(https://i.imgur.com/dtjw2Gk.png)', 'background-size' : 'contain' });
    }
});