0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Youtubeの広告を自動でスキップするChromeプラグインを開発しました。

Last updated at Posted at 2020-07-19

タイトルの通りです。

仕事中にYoutubeで音楽を流している間に、『自動で挟まれてくる広告が邪魔だな』と思い、ならプログラムの力でスキップを自動化できるのでは?と思ったのが、制作の発端です。
最初は自分のローカルでのみ使用していたのですが、どうせなら誰でも使えるようにしたいと思い、Chromeの公式機能へ申請しました。

技術的には大した事はないのですが、技術を応用する事の可能性の広さを痛感しました。
今後とも、常に『自分の技術を、どう日常の役に立てられるか?』についてアンテナを絶やさず、常に模索して行きたいと思います。

始めて制作した、オリジナルの制作物です。
アイデアを技術で実現するって、本当に楽しいです笑。
これで世の中の人たちの役に立てるのなら、本当にエンジニア冥利に尽きます。よければ使ってください。

Chrome URL:
https://chrome.google.com/webstore/search/SkipYoutubeAdvertisement?hl=ja

Github URL:
https://github.com/Takabun/SkipYoutubeAdvertisement

ソースコード:

 if (location.host === "www.youtube.com") { 
     setInterval( function () { 
         const skipbuttons = document.getElementsByClassName("ytp-ad-skip-button-container"); 
         try { 
            skipbuttons[0].click(); |
         } catch (e) { 
             ; 
         } 
 }, 1000)} 

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?