YT Skip Ads
This extension attempts to skip the YouTube ads automatically
什麼是YT Skip Ads?
YT Skip Ads是由Furqan開發的Chrome擴展程式,該擴展的主要功能是“This extension attempts to skip the YouTube ads automatically”。
擴展截圖
下載YT Skip Ads擴展crx文件
下載YT Skip Ads擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks: 1. Auto-skips those 5 second ads on YouTube: YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.
擴展基本資訊
名稱 | YT Skip Ads |
ID | lahknfhfeikbpljolkheigimmcfhplga |
官方網址 | https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga |
簡介 | This extension attempts to skip the YouTube ads automatically |
檔案大小 | 17.31 KB |
安裝次數 | 34 |
目前版本 | 1.0 |
更新時間 | 2021-09-14 |
上架時間 | 2021-09-14 |
開發者 | Furqan |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YT Skip Ads", "description": "This extension attempts to skip the YouTube ads automatically", "version": "1.0", "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "YouTube Skip Ads" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "src\/css\/main.css" ], "js": [ "src\/js\/dom-watcher.js" ], "run_at": "document_end" } ] } |