Last active
December 18, 2023 19:15
-
-
Save mortenson/8cae4a190039651a6596f2f0a2e2d5c1 to your computer and use it in GitHub Desktop.
Very simple and stupid chrome extension to block arbitrary sites
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.body.innerHTML = 'get back to work' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 2, | |
"name": "dumb blocker", | |
"description": "made by mortenson", | |
"version": "0.0.1", | |
"content_scripts": [ | |
{ | |
"matches": [ | |
"https://www.youtube.com/*" | |
], | |
"js": ["block.js"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment