Skip to content

Instantly share code, notes, and snippets.

@ZiTAL
Created January 31, 2024 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZiTAL/75e6572e9e8f77ea4b123ad81a5c5ed3 to your computer and use it in GitHub Desktop.
Save ZiTAL/75e6572e9e8f77ea4b123ad81a5c5ed3 to your computer and use it in GitHub Desktop.
js violentmonkey: remove didomi cookies remover
// ==UserScript==
// @name Remove Didomi
// @namespace Violentmonkey Scripts
// @author zital
// @match *://*/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function()
{
'use strict'
document.querySelector('#didomi-host').remove()
document.querySelector('body').classList.remove('didomi-popup-open')
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment