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
/** | |
Инструкция | |
1. Открыть владельцу/администратору страницу | |
1.1. Для чистки паблика/группы «Управление сообществом» > «Участники», ссылка https://vk.com/ваш_паблик?act=users | |
1.2. Для чистки друзей «Друзья», ссылка https://vk.com/friends | |
2. Проскроллить до конца списка участников, чтобы все подгрузились (протестировано на 15к подписчиков) | |
3. Открыть консоль браузера используя клавиатуру: | |
3.1. Command - Option - J (Mac) | |
3.2. Ctrl - Shift - J (Windows/Linux) | |
4. Скопировать код данный ниже в консоль |
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
({ | |
block: 'page', | |
title: 'Title of the page', | |
favicon: '/favicon.ico', | |
head: [ | |
{ elem: 'meta', attrs: { name: 'description', content: '' }}, | |
{ elem: 'css', url: 'index.min.css' } | |
], | |
scripts: [{ elem: 'js', url: 'index.min.js' }], | |
content: [ |
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
module.exports = { | |
block: 'page', | |
title: 'Title of the page', | |
favicon: '/favicon.ico', | |
head: [ | |
{ elem: 'meta', attrs: { name: 'description', content: '' }}, | |
{ elem: 'css', url: 'index.min.css' } | |
], | |
scripts: [{ elem: 'js', url: 'index.min.js' }], | |
content: [ |