Easily remove videos from your YouTube subscription feed. Ads a (x) button to the right of each video so you can remove them with a single click.
If you like this extension, you can always buy me a cup of coffee.
For updates on this and other projects, follow me on one of the following sites:
Note: The round "Delete" icon in this extension's icon is by Black Bear Blanc.
There are several options for using this project:
- Install as a browser extension for Chrome
- Install as a user script (mirror) using something like Greasemonkey or Tampermonkey
- Clone this repository to your local machine
- Make sure you have NodeJS installed
- Navigate to the root of this project on your local machine in your command line interface
- Run
npm install
to install all required dependencies - Make desired changes to files in
src/
- Build the source code as described below
If you make useful changes, please create a pull request so I can get them merged back into the master branch and official distribution channels for this project.
The following gulp build tasks can be used by running them on in your command line interface:
gulp script
- Compile a userscript version of this code todist/userscript
gulp chrome:build
- Createbuild/chrome
directory and files which can be loaded as an unpacked extensiongulp chrome:dist
- Create a zip file indist/chrome/chrome-extensionv[version].zip
gulp clean
- Removesdist/
andbuild/
folders, along with their contents
You can watch the source code for changes and automatically re-build the related files by starting the following gulp tasks:
gulp script:watch
- Watch for changes in thesrc/
folder, and automatically updatebuild/userscript/
gulp chrome:watch
- Watch for changes in thesrc/
folder, and automatically updatebuild/chrome/
If you get an error about gulp
not being in your path when you run the commands above, you can try installing gulp
globally on your machine by typing npm install -g gulp
. If you still have problems (especially on windows machines), you may need to add the path to the gulp binary to your system path. Google will tell you how. ;-)
Using gulp chrome-watch
with Chrome Extension Auto Reload installed and running allows you to load this project as an unpacked extension from build/chrome
and have it automatically reload any time the files in src/
are changed. This saves you having to go to the Chrome extensions tab and hit reload every time you make any changes.
Creative Commons Attribution 3.0 Unported License
You can share or modify this work as long as you:
- Link back to this page
- Don't use this or derivatives of this for commercial use
- Share your changes so that others can benifit from your improvements.