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
// ==UserScript== | |
// @name YouTube Downloader JavaScript | |
// @namespace com.vsubhash.js.youtube-downloader | |
// @description Downloads YouTube videos | |
// @include https://www.youtube.com/* | |
// @version 2018 | |
// @grant none | |
// ==/UserScript== | |
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
// ==UserScript== | |
// @name Facebook Posts Deleter | |
// @namespace com.vsubhash.js.facebook-posts-deleter | |
// @description Deletes all facebook posts, one by one if browser is spoofed as Firefox 34 | |
// @include https://www.facebook.com/*allactivity | |
// @exclude %exclude% | |
// @version 2018 | |
// @grant none | |
// ==/UserScript== | |
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
// ==UserScript== | |
// @name Twitter Tweets Deleter | |
// @namespace com.vsubhash.js.twitter_tweets_deleter | |
// @description Deletes all tweets one-by-one | |
// @version 2018 | |
// @grant none | |
// ==/UserScript== | |
document.addEventListener("DOMContentLoaded", startDeletingTweets, false); | |
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
// ==UserScript== | |
// @name YouTube LoadMore Till No More | |
// @namespace com.vsubhash.js.youtube-load-more-till-no-more | |
// @description Automatically expands the videoslist | |
// @include /https://www\.youtube\.com/(channel|user)/(\w+)/videos*/ | |
// @exclude %exclude% | |
// @version 2018 | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name YouTube RSS feed generator | |
// @namespace com.vsubhash.js.youtube-rss-feed-generator | |
// @description Adds a RSS feed button to YouTube channels | |
// @include https://www.youtube.com/watch* | |
// @version 2018 | |
// @grant none | |
// ==/UserScript== | |
document.addEventListener("DOMContentLoaded", startItDelayed, false); |
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
// ==UserScript== | |
// @name YouTube Ads Disabler | |
// @namespace com.vsubhash.js.youtube-ads-disabler | |
// @description Disables ads, swithces off autoplay, adds RSS link, deletes "recommended for you" videos, unhides description, displays latest comments | |
// @include https://www.youtube.com/watch* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
try { |
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
// ==UserScript== | |
// @name Show newer YouTube comments | |
// @namespace com.vsubhash.js.show-youtube-comments-newer | |
// @description Automatically changes YouTube comments filter off | |
// @include https://www.youtube.com/watch* | |
// @exclude %exclude% | |
// @version 2018 | |
// @grant none | |
// ==/UserScript== |
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
if [ $# -lt 2 ]; then | |
echo -e "The format is:\n\t\e[35m`basename $0` \e[35;1mtwitter-handle-or-hashtag number-of-tweets [nojs]\e[0m" | |
exit | |
fi | |
# A backup of all files will be available in this Logs directory | |
if [ ! -d ~/Logs ]; then | |
mkdir ~/Logs | |
fi | |
cd ~/Logs |
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
// ==UserScript== | |
// @name YouTube Profile-Link-To-Vidoes-List Changer | |
// @namespace com.vsubhash.js.youtube-profile-link-to-videos-changer | |
// @description Changes the profile link to the videos page | |
// @include https://www.youtube.com/watch* | |
// @version 2018 | |
// @grant none | |
// ==/UserScript== | |
document.addEventListener("DOMContentLoaded", startItDelayed, false); |
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
// ==UserScript== | |
// @name BookReaderView | |
// @namespace com.vsubhash.js.BookReaderView | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
if (subhash_browser_js == null) { | |
var subhash_browser_js = {}; | |
} |
OlderNewer