Skip to content

Instantly share code, notes, and snippets.

@thenithinbalaji
Last active May 9, 2023 21:12
Show Gist options
  • Save thenithinbalaji/7ce2e70da8c589ca4f8e4547ef347836 to your computer and use it in GitHub Desktop.
Save thenithinbalaji/7ce2e70da8c589ca4f8e4547ef347836 to your computer and use it in GitHub Desktop.
GitHub Feedblock Extension
{
"name": "GitHub Feed Blocker",
"description": "Block the feed!",
"version": "1.0",
"manifest_version": 3,
"content_scripts": [
{
"matches": ["https://github.com/"],
"js": ["/removal_script.js"]
}
]
}
document.getElementsByClassName("application-main")[0].remove()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment