This is a Mozilla Firefox Add-On Accelerating and Skipping YouTube Ads in Two Seconds or Less.
- Real-time Acceleration: Ads are sped up on the fly.
- Auto-Skip: Bypass ads as soon as they become skippable.
A process, running when the current tab is youtube.com/watch
, periodically checks the page content for ads.
If there is one, the process mutes, hides and accelerates it.
As soon as the Skip Ads ->
button shows up, the process clicks it.
When the ad is skipped, the process increments a local private counter of skipped ads in the browser.
- It does not make any other changes to the page.
- It does not collect any data.
- It does not store or retrieve any cookies.
- It stores the number of ads skipped in the local storage, which can only be read by the browser (this information is not accessible to anyone / anything else).
Note: Some ads in this demo are skipped so fast that it's difficult to notice them.
Install the extension
- at https://addons.mozilla.org/en-US/firefox/addon/youtube_adblock,
- or go to
Add-ons
and search forYoutube AdBlock accelerates
.
Once installed, the extension will automatically and seamlessly take care of ads on YouTube.
Alternatively, you can install the extension from a local folder. This can be useful for easily testing a not-yet-published version of the extension, without having to set up a development environment. For example, a pull request might be in progress to address a user issue, and we would like the user to test the changes (without taking the risk to publish this version on the store).
To do so:
-
Obtain the extension source code locally: clone the relevant repo or download and extract its zip file (e.g., here for the main branch)
-
Navigate to
about:debugging#/runtime/this-firefox
in the Firefox URL search bar -
Right next to
Temporary Extensions
, click onLoad Temporary Add-on...
-
In the selection, click on any file in the root directory of the local extension
The add-on should work seamlessly upon installation. However, it is possible that the default configuration creates issues (such as triggering the YouTube detection banner) for you, as YouTube provides different different user interfaces / experiences depending on the location, language, etc.
You are welcome to adjust the configurations in the extension's settings (click on the extension's icon in the browser's toolbar). Description of each parameter:
- Playback Rate: the playback speed desired for the ad. The higher the playback rate, the faster the ad will end, but also the more likely YouTube will notice that an adblock has been used.
- Mute Ad: whether to mute the ad. When the playback rate is low, we can hear the sped-up ad sound; so it can be convenient to mute it.
- Hide Ad: whether to hide the ad by replacing it with a black screen while it is playing.
- Boost After 2s: whether to boost* the ad after 2 seconds.
- If Skip Available: action to perform when the "Skip Ad" button gets available. Options:
- Click Button: click the button, the natural option.
- Boost Ad: Boost* the ad.
- Do Nothing: Do nothing.
*Boosting consists in setting the ad timestamp to the end, essentially ending it. This can't be done as soon as the ad starts, as YouTube would detect it.
If YouTube detected that you used an adblock, you can do the following:
- Adjust the configurations defined above:
- Reduce the playback rate (e.g., 4),
- Turn OFF Mute Ad, Hide Ad and Boost After 2s,
- Set If Skip Available to Click Button or Do Nothing.
- Reload the page.
- If none of the above worked, write a feedback (see instructions at the end of this document).
- Mozilla Firefox
- Node.js: 20.9.0
- npm: 10.1.0
- web-ext: 7.8.0
Other versions might work, but have not been tested.
-
Clone the repo
git clone [email protected]:MartinBraquet/youtube-adblock.git
-
Install the prerequisites
For Debian-based distributions:
Install Node.js from these instructions.
sudo apt install npm sudo npm install --global web-ext sudo npm install mustache jsdom
-
Run the extension
web-ext run
-
Open the browser console
Ctrl + Shift + I
Or
about:debugging#/runtime/this-firefox
and click onInspect
to open the extension console.
-
Build the extension
web-ext build --overwrite-dest --ignore-files demo martin readme misc package-lock.json release.sh
-
The extension is now available in the
web-ext-artifacts
folder as a .zip file.
Submit the .zip file to Mozilla for review and publication.
Note: naturally, you won't be able to publish the same extension or overwrite the existing one.
If your extension diverges from the current one, you can change the extension's ID in the manifest.json
file and publish
it as a new extension in your own account.
Please write a review in the Firefox store.
To provide upgrades or fixes, please open a pull request.
This extension is not affiliated with YouTube or Google in any way.
This repo has not been tested on any other browser than Mozilla Firefox.