SkipAds
This clicks SkipAds button, removes Ad-banners for you
什么是SkipAds?
SkipAds是由Edwin开发的Chrome扩展程序,该扩展的主要功能是“This clicks SkipAds button, removes Ad-banners for you”。
扩展截图
下载SkipAds扩展crx文件
下载SkipAds扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension automatically clicks Skip Ad button on youtube videos. It also removes the Ad-banners that appear at the bottom of the video. You just have to install this Extension, and watch Youtube without pressing on Skip Ad button. This plugin works exclusively on YouTube videos.
扩展基本信息
名称 | SkipAds |
ID | gccoifaifhhancbpbngckolbphodjiea |
官方URL | https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea |
简介 | This clicks SkipAds button, removes Ad-banners for you |
文件大小 | 9.99 KB |
安装次数 | 159 |
当前版本 | 2.0 |
更新时间 | 2022-06-27 |
上架时间 | 2020-06-19 |
评分 | 5.00/5 共4次评分 |
开发者 | Edwin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SkipAds", "version": "2.0", "description": "This clicks SkipAds button, removes Ad-banners for you ", "permissions": [ "activeTab", "declarativeContent", "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "background": { "service_worker": "background.js", "persistent": false }, "action": { "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "skipAds.js" ] } ], "manifest_version": 3 } |