YoutubeAutoSkip
A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.
什麼是YoutubeAutoSkip?
YoutubeAutoSkip是由AshleyTyagi開發的Chrome擴展程式,該擴展的主要功能是“A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.”。
擴展截圖
下載YoutubeAutoSkip擴展crx文件
下載YoutubeAutoSkip擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Now using manifest V3! A script to auto-click skips, the icon which is used was made by Pixel Perfect on https://www.flaticon.com/authors/pixel-perfect An extension with no user-interface which runs in the background and will effectively auto-skip ads on the site youtube.com by either shifting straight to the end of the advertisement or by either automatically pressing the skip button. Disclaimer this will not remove ads on the side of YouTube since it isn't an adblocker it simply auto-clicks skip or either it shifts your progress of watching the ad straight to the end, so you effectively skip it. Here is the link to the Github repository containing the code: https://github.com/oslohes123/YoutubeAutoSkip
擴展基本資訊
名稱 | YoutubeAutoSkip |
ID | jackpdpiimmbmbcpjoabcahggiaindac |
官方網址 | https://chromewebstore.google.com/detail/youtubeautoskip/jackpdpiimmbmbcpjoabcahggiaindac |
簡介 | A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad. |
檔案大小 | 5.86 KB |
安裝次數 | 51 |
目前版本 | 3.0 |
更新時間 | 2022-09-26 |
上架時間 | 2020-06-28 |
評分 | 5.00/5 共 1 次評分 |
開發者 | AshleyTyagi |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YoutubeAutoSkip", "version": "3.0", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "script.js" ] } ], "description": "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.", "icons": { "48": "icon.ico" } } |