Last active
January 16, 2024 04:22
-
-
Save Cooluck/4c20c020cb5c3a9f96ac30b8488e7fd2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 VK.com Kill news feed | |
// @namespace Cooluck | |
// @author Roman Rybalchenko | |
// @description Hide all posts from vk.com feed. Скрывает в ленте VK посты. | |
// @include https://vk.com/feed* | |
// @include https://vkontakte.ru/feed* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
// @version 0.16 | |
// ==/UserScript== | |
$("#feed_new_posts").hide(); | |
$("#feed_wall").hide(); | |
$(".feed_since").css("display","none"); | |
$("#l_nwsf").hide(); | |
$("#feed_filters").hide(); | |
$(".wall_wrap").css("display","none"); | |
$(".stories_feed_wrap").css("display","none"); | |
$('#feed_empty').attr('id','feed_motivation'); | |
$('#feed_motivation').html('У тебя всё получится!'); | |
$("#feed_motivation").show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment