Bloomberg - Paywall Bypass

Simple script to bypass the paywall on Bloomberg

// ==UserScript==
// @name         Bloomberg - Paywall Bypass
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Simple script to bypass the paywall on Bloomberg
// @author       November2246
// @match        https://*.bloomberg.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bloomberg.com
// @grant        none
// @run-at       document-start
// @license      ISC
// ==/UserScript==

const { log, warn, error, debug } = window.console;

const subs = {
    BLOOMBERG_ALL: 'bbg-all',
    BLOOMBERG_DIGITAL: 'bbg-digital',
    BUSINESSWEEK_PRINT: 'bw-print',
    BUSINESSWEEK_DIGITAL: 'bw-digital',
    BUSINESSWEEK_ZINIO: 'bw-zinio'
};
const subStrings = Object.values(subs);

const _searchParamsGet = URLSearchParams.prototype.get;
URLSearchParams.prototype.get = function get() {
    let params = _searchParamsGet.apply(this, arguments);
    if (arguments[0] === 'mockSub') {
        return 'bbg';
    }
    if (arguments[0] === 'showPaywall') {
        return null;
    }
    return params;
}

const _arraySome = Array.prototype.some;
Array.prototype.some = function some() {
    let includesSubs = false;
    subStrings.forEach(str => {
        if (this.includes(str)) includesSubs = true;
    });
    if (includesSubs) return true;
    return _arraySome.apply(this, arguments);
}

Object.defineProperty(window, '_regUserInfo', {
    get() {
        return window._regUserInfo_;
    },
    set(v) {
        v.subscription = { type: 'BBW' };
        window._regUserInfo_ = v;
    }
});

Object.defineProperties(Object.prototype, {
    _isTerminalSubscriber: {
        get() {
            return true;
        },
        set() {}
    },
    _isBBGSubscriber: {
        get() {
            return true;
        },
        set() {}
    },
    _isBWSubscriber: {
        get() {
            return true;
        },
        set() {}
    }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址