Open in RemovePayWall

Open the current page with RemovePayWall from the Tampermonkey menu button

Verze ze dne 24. 08. 2025. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Open in RemovePayWall
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Open the current page with RemovePayWall from the Tampermonkey menu button
// @author       rogierg
// @license      MIT
// @match        *://*/*
// @grant        GM_registerMenuCommand
// @grant        GM_openInTab
// @icon         https://www.removepaywall.com/faviFold/favicon-16x16.png
// ==/UserScript==

(function() {
    'use strict';

    GM_registerMenuCommand("Open current page in RemovePayWall", function() {
        const url = encodeURIComponent(location.href);
        GM_openInTab("https://www.removepaywall.com/search?url=" + url, { active: true });
    });
})();