BitChute Auto Uncensor

Automatically click through "Some videos are not shown due to your current sensitivity settings, click here to show them."

  1. // ==UserScript==
  2. // @name BitChute Auto Uncensor
  3. // @namespace http://bitch.oot
  4. // @description Automatically click through "Some videos are not shown due to your current sensitivity settings, click here to show them."
  5. // @include https://www.bitchute.com/channel/*/
  6. // @include https://bitchute.com/channel/*/
  7. // @version 1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var wclh = window.content.location.href;
  12. if (wclh.match(/channel\/\w+\//)) {
  13. var redsg = wclh+"?showall=1";
  14. window.content.location.replace(redsg);
  15. }