Tired of watching ads on YouTube?

Our free UserScript automatically clicks the “Skip Ads” button for you — with a natural random delay to avoid detection — and mutes unskippable ads for the first few seconds.

Why use this script?


How to Install

  1. Install Tampermonkey extension (Chrome, Firefox, Edge, Safari).

image.png

  1. Click ****Auto Click YouTube Ads Script ****below to install the Auto Skip Ads script.

image.png

If the install url didn’t work for some reason, no worries — you can still add the script manually in just a minute:

  1. Click on the Tampermonkey extension icon.
  2. Choose "Create a new script…" from the dropdown.
  3. Delete all the default code, then copy & paste the script below
  4. Click File > Save, or hit Ctrl + S / Cmd + S.
  5. Make sure the script is enabled in your Tampermonkey dashboard.
// ==UserScript==
// @name         Auto Click Skip
// @namespace    <http://tampermonkey.net/>
// @version      0.1
// @description  Automatically skips YouTube ads
// @author       YourName
// @match        <https://www.youtube.com/*>
// @grant        none
// @require      <https://tomatrgod.github.io/automate-click-skip/automateClick.js>
// ==/UserScript==

(function() {
    'use strict';
    console.log("loading click automatically.");
})();