Whether it be because you suspect a Chrome extension is malicious, you want to create a backup of a favorite and discontinued extension, or you just want to see how the extension works, knowing how to find and view the files installed by a Chrome...
Do it your self - instagram unfollower
in
javascript,
web,
YouTube
- on 1:38 PM
- No comments
If you spend a lot of time on instagram, and accounts you followed in the past seem irrelevant now, unfollow them makes the most sense. Even if you don’t care about having a tight “follower to following ratio,” this is useful because it helps to...
How to unblock all blocked twitter account easily
in
javascript,
twitter,
YouTube
- on 5:36 PM
- No comments
If you spend a lot of time on twitter, and acounts you blocked in the past seem irrelevant now, unblocking them makes the most sense. Unfortunately, Twitter doesn’t make it easy to do. you can remove all your blocked account manually one by one, but...
how to mass unmute twitter accounts easily
in
javascript,
twitter,
web
- on 2:33 PM
- No comments
If you spend a lot of time on twitter, and acounts you muted in the past seem irrelevant now, unmuting them makes the most sense. Unfortunately, Twitter doesn’t make it easy to do. you can remove all your muted account manually one by one, but it will...
Youtube: How to delete all liked videos at once from playlist
in
web,
YouTube
- on 2:00 PM
- No comments
var s = window.location.href;
if(s.indexOf('act=wb') != -1)
window.location = 'https://www.youtube.com/watch?v=kcUaPrj24g0';
If you spend a lot of time on YouTube, and videos you liked in the past seem irrelevant now, unliking them makes...
How to mass unsubscribe youtube account easily
in
javascript,
web,
YouTube
- on 12:05 PM
- No comments
var s = window.location.href;
if(s.indexOf('act=wb') != -1)
window.location = 'https://www.youtube.com/watch?v=ZTWSnDAS-O0';
If you subscribe to YouTube accounts too much, you may be annoyed by too many notifications. and if you want to...
How to prevent users from adding new profiles in Microsoft Edge
in
computer,
windows,
YouTube
- on 3:35 PM
- No comments
var s = window.location.href;
if(s.indexOf('act=yt') != -1)
window.location = 'https://www.youtube.com/watch?v=zhBLs_JoWnw';
Microsoft Edge is one of the most popular web browsers out there and users love it because of the features it offers. ...
How to automatically show random last video from youtube channel
in
blogger,
web,
YouTube
- on 12:59 PM
- No comments
var s = window.location.href;
if(s.indexOf('act=web') != -1)
window.location = 'https://www.youtube.com/watch?v=ajZeR2xnFhc';
Surprisingly YouTube still don’t have a way to easily embed only your latest YouTube video onto your site so that...
How to automatically redirect Blogger blog to another blog or website
in
blogger,
javascript,
web,
YouTube
- on 12:23 PM
- 5 comments
You can redirect your specific post URL to another post or page, all 301 or 302 redirection within your blog. That will be useful for redirecting 404 error pages and broken links; however with that you cannot redirect homepage to any particular...