VK Comments Link

Add a link to comments on the Vk search

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         VK Comments Link
// @namespace    http://alamote.pp.ua/
// @match        https://vk.com/search*
// @grant        none
// @version      1.1
// @description  Add a link to comments on the Vk search
// @icon         http://alamote.pp.ua/staff/alamote-logo.png
// @license      MIT
// ==/UserScript==

/*jshint esversion: 6 */

const setButtons = () => {
    const results = document.querySelectorAll('.groups_row:not(.with-comments)');
    for (let i = 0; i < results.length; i++) {
        const row = results.item(i);
        row.classList.add('with-comments');
        console.log(row.dataset.id);
        const subBtn = row.querySelector('.search_sub_button');
        if (subBtn) {
            subBtn.removeAttribute('onclick');
            subBtn.classList.add('comments-btn');
            subBtn.classList.remove('search_sub_button');
            subBtn.querySelector('span.FlatButton__content').innerHTML = 'Комментарии';
            subBtn.addEventListener('click', () => {
                const handle = window.open(`https://vk.com/wall-${row.dataset.id}?q=type%3Areply`);
                handle.blur();
                window.focus();
            });
        }
        const unsubBtn = row.querySelector('.search_unsub_button');
        if (unsubBtn) {
            unsubBtn.remove();
        }
    }
}


(function() {
    'use strict';

    setButtons();
    setInterval(setButtons, 1000);

})();