Skip to content

Commit

Permalink
v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alsweider authored Feb 4, 2025
1 parent c74782b commit 40204a9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Remove-Focus-On-Section.user.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// ==UserScript==
// @name Remove "Focus On" Section
// @namespace http://tampermonkey.net/
// @version 0.0.1
// @description Removes the element that features celebrities from the Criticker homepage.
// @author Alsweider
// @match https://www.criticker.com/
// @icon https://www.criticker.com/favicon.ico
// @grant none
// @license MIT
// @downloadURL https://update.greasyfork.org/scripts/525859/Remove%20%22Focus%20On%22%20Section.user.js
// @updateURL https://update.greasyfork.org/scripts/525859/Remove%20%22Focus%20On%22%20Section.meta.js
// ==/UserScript==

(function() {
'use strict';

//Search & remove element with the ID "rc_focus"
var focusSection = document.getElementById('rc_focus');
if (focusSection) {
focusSection.remove();
}
})();

0 comments on commit 40204a9

Please sign in to comment.