bDEp

Download Exam Papers Instantly

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         bDEp
// @namespace    http://tampermonkey.net/
// @version      2025-01-06
// @description  Download Exam Papers Instantly
// @author       Strbeni
// @license      MIT
// @include      https://brpaper.com/downloads/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==


(function() {
    'use strict';
// You can Use This Code ;)
// This Code was Short Too Short Lmao but I added some functions to make it look complex

    function getLoc() {
        let locationData = window.location.href;
        console.log("Original location URL fetched:", locationData);
        return locationData;
    }

    function modifyURL(url, pattern, replacement) {
        let newURL = url.split(pattern).join(replacement);
        return newURL;
    }

    function modLi(url) {
        let modifiedURL = url;
        modifiedURL = modifyURL(modifiedURL, '/downloads/', '/downloader/');
        modifiedURL = manLi(modifiedURL);
        return modifiedURL;
    }

    function manLi(url) {
        let manipulatedURL = url.split('').reverse().join('');
        manipulatedURL = manipulatedURL.replace('rpd', 'rpdcomplex');
        manipulatedURL = manipulatedURL.split('').reverse().join('');
        return manipulatedURL;
    }

    function initRed(url) {
        setTimeout(() => {
            window.location.href = url;
            console.log('Redirection performed!');
        }, 1000);
    }


    let downL = getLoc();
    let chL = modLi(downL);

    initRed(chL);

})();