Chrome extension development to remove YouTube ad: Skip Youtube ad via chrome extension

Поділитися
Вставка
  • Опубліковано 28 жов 2024

КОМЕНТАРІ • 42

  • @htzblast762
    @htzblast762 3 роки тому +8

    I am a professional coder I've been coding in vs since 5 yrs rn I'm in CALTYECH UNIVERSITY OF ENGINEERING I liked your code it was good

  • @yusufhabib3507
    @yusufhabib3507 Рік тому +1

    sir is this code execute every 3 seconds , even when you are not playing any video . like when you are simply scrolling , is it still checking for skip button class?

  • @witchop1911
    @witchop1911 4 роки тому +5

    Explanation simple and easy to understand..keep going❤️👍

  • @mrcastles1226
    @mrcastles1226 3 роки тому +3

    No link in description?

  • @sarthakrana5534
    @sarthakrana5534 3 роки тому +2

    Well done it is working 👍😁

  • @yourminidesigner2800
    @yourminidesigner2800 2 роки тому

    Love it, good job! Can you please make a video how to make adjustments for the extension so it always works. My extension works sometimes and sometimes the Ad still plays fully...

  • @tobiasl3517
    @tobiasl3517 3 роки тому +1

    Thanks for the detailed explanation! Very helpful!

  • @soumyadas9939
    @soumyadas9939 2 роки тому +1

    AMAZING MAN. I CAN'T BELIEVE THAT I YES I MADE AN EXTENTION(ALTHOUGH I COPIED FROM YOU). HATSOFF MAN

  • @gamerz5832
    @gamerz5832 2 роки тому

    Thank you for this awsome idea.
    I worked on modifying the code to skip ad without showing it can you reply me how to do that. Please.

  • @azitomy7893
    @azitomy7893 3 роки тому +2

    it would be very useful if you put the script in the flipping description

  • @ashokram6870
    @ashokram6870 3 роки тому +1

    Great video. Can you please make a video on how to make multiple comments for same video?

  • @alexachadan1753
    @alexachadan1753 4 роки тому +1

    tnq for showing how to make chrome extensions

  • @anuragrajput3337
    @anuragrajput3337 2 роки тому

    can it skip unskippable ads??

  • @bibhasash7371
    @bibhasash7371 Рік тому

    but what about unskippable ads?

  • @shadowfightwarriorsn97
    @shadowfightwarriorsn97 2 роки тому

    Hello Bro. Very Good Video bro. A small help bro I am need of a codes of you tube complete ad blocking extension using javascript bro . I am not at all interested in viewing ad for 5 seconds also bro in my laptop bro and so I am asking it bro. Can you able to please help me bro. By sending the codes bro.

  • @ShrikantNimbalkarD
    @ShrikantNimbalkarD 3 роки тому

    how to add delay in the script so it will skip the ad after 15 seconds

  • @SajjadAli-je8oq
    @SajjadAli-je8oq 2 роки тому

    Thank you very much

  • @tanmaygupta2373
    @tanmaygupta2373 3 роки тому

    where is the link? please help

  • @hassengetie-xb3ux
    @hassengetie-xb3ux Рік тому

    Tanks

  • @zakirashid4375
    @zakirashid4375 2 роки тому

    Good job !

  • @navjotsingh2457
    @navjotsingh2457 Рік тому

    Ty

  • @fanchenlll
    @fanchenlll 3 роки тому

    And i have lots of errors in tge second script

  • @thebusinesscentre
    @thebusinesscentre Рік тому

    😮

  • @sanjaysah8542
    @sanjaysah8542 2 роки тому

    Yaa I wamt

  • @biggusmaximus1651
    @biggusmaximus1651 2 роки тому +1

    i used stone to destroy stone

  • @darkcode8156
    @darkcode8156 4 роки тому +1

    love from nepal go o

  • @fanchenlll
    @fanchenlll 3 роки тому +2

    When i upload it i get an error: Manifest is not valid JSON

    • @danielmancera6080
      @danielmancera6080 3 роки тому

      its a scam just use the ublock orgin extension.

    • @pratikamatya5190
      @pratikamatya5190 2 роки тому +1

      @@danielmancera6080 it's definitely not a scam. works perfectly.

    • @pratikamatya5190
      @pratikamatya5190 2 роки тому +1

      recheck your spellings/typos in the code. surely sth is wrong there

    • @danielmancera6080
      @danielmancera6080 2 роки тому

      @@pratikamatya5190 mine dont work.

    • @saksham2248
      @saksham2248 2 роки тому

      change your manifest version to 3 instead of 2

  • @iurikoth
    @iurikoth 3 роки тому

    HARD HARD HARD!!! When i upload, ocurrs the error: Uncaught SyntaxError: Unexpected token [

  • @prachipachang5030
    @prachipachang5030 2 роки тому

    chrome.webRequest.onBeforeRequest.addListener(
    function(details) {
    console.log("I am gpoing to block:", details.url)
    return {cancel:true}},
    {urls: blocked_sites},
    ["blocking"]
    )
    This above code is for blocking request in mv2 how to migrate this in mv3
    webRequest api is not supported for mv3 so i get error like
    Error 1:
    'webRequestBlocking' requires manifest version of 2 or lower.
    Error 2:
    Uncaught TypeError: Cannot read properties of undefined (reading 'onBeforeRequest')

    • @khushigupta5730
      @khushigupta5730 Рік тому

      for version error you can change version to 3, it will work fine.