Remove sponsored content from Pocket

It tries to remove sponsored content from Pocket's queue.

// ==UserScript==
// @name         Remove sponsored content from Pocket
// @namespace    https://zblesk.net/blog
// @version      0.93
// @description  It tries to remove sponsored content from Pocket's queue.
// @author       zblesk
// @match        https://getpocket.com/a/queue/
// @match        https://getpocket.com/a/queue/list/
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
  'use strict';
  setTimeout(function() {
    console.log('Removing all ' + $(".spoc").length + ' items with the "spoc" class.');
    $(".spoc").hide();
  }, 1000);
})();

QingJ © 2025

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