Skip to content

Instantly share code, notes, and snippets.

@Cooluck
Last active January 16, 2024 04:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cooluck/4c20c020cb5c3a9f96ac30b8488e7fd2 to your computer and use it in GitHub Desktop.
Save Cooluck/4c20c020cb5c3a9f96ac30b8488e7fd2 to your computer and use it in GitHub Desktop.
// ==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