Skip to content

Instantly share code, notes, and snippets.

@fsantini
Created February 22, 2019 10:40
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 fsantini/8206502bb41c080d2afb26edadac1a6e to your computer and use it in GitHub Desktop.
Save fsantini/8206502bb41c080d2afb26edadac1a6e to your computer and use it in GitHub Desktop.
userscript for removing the popup from Giallozafferano website
// ==UserScript==
// @name Giallozafferano Popup closer
// @version 1
// @grant GM_addStyle
// @include https://ricette.giallozafferano.it/*
// @include http://ricette.giallozafferano.it/*
// ==/UserScript==
// Note: disable cookie storage for giallozafferano to remove the 5-page limit!
GM_addStyle(`
.fc-pinned-message-container {
visibility: hidden;
}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment