Remove sponsored content from Pocket

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

  1. // ==UserScript==
  2. // @name Remove sponsored content from Pocket
  3. // @namespace https://zblesk.net/blog
  4. // @version 0.93
  5. // @description It tries to remove sponsored content from Pocket's queue.
  6. // @author zblesk
  7. // @match https://getpocket.com/a/queue/
  8. // @match https://getpocket.com/a/queue/list/
  9. // @grant none
  10. // @run-at document-idle
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. setTimeout(function() {
  16. console.log('Removing all ' + $(".spoc").length + ' items with the "spoc" class.');
  17. $(".spoc").hide();
  18. }, 1000);
  19. })();

QingJ © 2025

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