BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup

Join the forum, it's quick and easy

BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup
BullyWiiHacks
Would you like to react to this message? Create an account in a few clicks or log in to continue.
BullyWiiHacks

Gaming, Modding & Programming

Important reminders:

- Click *HERE* for advanced forum search or check out the text field below on the front page for Google before posting
- NO support via private message (use the forum)
- Write meaningful topic titles
Site Translation
Latest topics
» Dropped Out of College to Pursue Web Dev and Life Pursuits in General
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty4/7/2024, 2:34 pm by SnB@BWH

» Bully Made It Into a BIG Video 400K Views
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty4/7/2024, 6:58 am by Bully@WiiPlaza

» Wii Play Tanks
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty3/24/2024, 2:46 pm by helpmeout

» [Bypass Paywalls] (Global) @magnolia1234 - GitLab
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty3/18/2024, 3:55 am by Seth@WiiPlaza

» [Download] Mary Shelley's Frankenhole
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty3/16/2024, 8:29 am by Seth@WiiPlaza

» Completely Custom Modded Controllers (Undetectable)
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty3/5/2024, 1:55 pm by Shadow@BWH

» (Zombies) Drink perks code?
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty3/5/2024, 1:24 pm by Shadow@BWH

» Die Rückkehr zu STEAM und WARFACE
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty3/2/2024, 3:54 am by Seth@WiiPlaza

» First person hand model change?
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty2/28/2024, 4:53 am by Ad3lamac611

» {RELEASE} Field Raider Firefox v1.72 by Seth@WiiPlaza
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Empty2/21/2024, 8:52 am by naxil

Search
 
 

Display results as :
 


Rechercher Advanced Search

May 2024
MonTueWedThuFriSatSun
  12345
6789101112
13141516171819
20212223242526
2728293031  

Calendar Calendar

Country Statistics
Free counters!

You are not connected. Please login or register

[RELEASE] YouTube-AutoLike-FireFox (v7.3f) {Seth@WiiPIaza}

Go down  Message [Page 1 of 1]

Seth@WiiPlaza

Seth@WiiPlaza
Admin & Coder
Admin & Coder


Code:
//   
//   
//   Build v.7.3f 
//                            Code by Seth@WiiPlaza
//
// script fixes forced pauses on YouTube caused by Ad-Blockers, it also auto-likes every video you watch
//
// Works only on latest versiom Firefox - tested on Version 11 5.6.0esr (64-bit)
//
// inject using the jQuery Firefox injector addon 'run-a-script by mivanchev '   
//      https://github.com/MIvanchev/run-a-script

function clickLikeButton() {
  const likeButtonSelector = '#top-level-buttons-computed > segmented-like-dislike-button-view-model > yt-smartimation > div > div > like-button-view-model > toggle-button-view-model > button';

  function performClick() {
    const likeButton = $(likeButtonSelector);

    if (likeButton.length) {
      likeButton.click();
      console.log('Like button clicked');
    } else {
      console.log('Like button not found');
    }
  }

  function getTitle() {
    const titleElement = $("#title > h1 > yt-formatted-string");
    return titleElement.length ? titleElement.text() : null;
  }

  let currentTitle = getTitle();

  function checkTitleChange() {
    const newTitle = getTitle();

    if (newTitle !== currentTitle) {
      console.log('Video title has changed, re-running the script...');
      performClick();
      currentTitle = newTitle;
    }

    setTimeout(checkTitleChange, 1000);
  }

  setTimeout(performClick, 5000);
  checkTitleChange();
}

function checkAndPlayVideo() {
  var videoElement = $('video');

  if (videoElement.length && videoElement[0].paused) {
    var playButton = $("#movie_player > div.ytp-chrome-bottom > div.ytp-chrome-controls > div.ytp-left-controls > button");

    if (playButton.length) {
      playButton.click();
    }
  }
}

$(document).ready(function () {
  clickLikeButton();
  setInterval(checkAndPlayVideo, 1000);
});


https://github.com/SethWiiPlaza/YouTube-AutoLike-FireFox/releases/tag/Release


_________________
[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Signat10

[RELEASE] YouTube-AutoLike-FireFox (v7.3f)  {Seth@WiiPIaza} Rsz_1r10  

https://github.com/SethWiiPlaza

Bully@WiiPlaza likes this post

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum