Facebook Wower

This is the poison that is Facebook Wower.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Facebook Wower
// @namespace    facebookWow
// @version      0.1
// @description  This is the poison that is Facebook Wower.
// @author       William Nielsen
// @match        http*://www.facebook.com/*
// @run-at       document-end
// @grant        none
// ==/UserScript==
/* jshint -W097 */
'use strict';

function scanForPosts(){
    var likeList = document.querySelectorAll('[data-testid="fb-ufi-likelink"]') ;


    for( var i = 0; i < likeList.length; i++ ){
        var a = likeList[i].parentElement.querySelector('[aria-label="Wow"]');
        if( a ){
            console.log('Wowed a post: ' + i);
            a.setAttribute('aria-pressed', 'true');
            a.click();
        }else{
            console.log("a is null");
        }

    }
}



document.addEventListener("keyup", scanForPosts);