Skip to content

Instantly share code, notes, and snippets.

@ryelle
Created December 13, 2018 00:20
Show Gist options
  • Save ryelle/043a3a76b597f0751c2172985763f26c to your computer and use it in GitHub Desktop.
Save ryelle/043a3a76b597f0751c2172985763f26c to your computer and use it in GitHub Desktop.
A super-simple chrome extension to disable falling snow on wp.com sites
{
"name": "No Falling Snow",
"content_scripts": [
{
"matches": ["https://*.wordpress.com/*", "https://*.wordpress.com/"],
"css": ["p2s.css"]
}
],
"version": "1.0.0",
"description": "A super-simple chrome extension to disable falling snow on wp.com sites",
"manifest_version": 2
}
.fallingSnow,
.snowflakes {
display: none !important;
}
@ryelle
Copy link
Author

ryelle commented Dec 13, 2018

To install in chrome:

  • Download zip, extract somewhere you'll keep it (renaming the folder is a good idea too)
  • Go to chrome://extensions/
  • Turn on Developer mode, top right corner
  • Click "Load unpacked"
  • Navigate to the folder

This should automatically apply to any *.wordpress.com site, so it won't work on custom mapped domains, but should be good for p2s.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment