Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
什么是Video ads skipper?
Video ads skipper是由admin开发的Chrome扩展程序,该扩展的主要功能是“Save time while browsing the internet and get rid of tiresome ads!”。
扩展截图
下载Video ads skipper扩展crx文件
下载Video ads skipper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The add-on allows you to skip ads while browsing youtube. After the first 5 seconds the ad will be skipped and you can enjoy your favorite movie or music clip. Don't waste time on unnecessary ads, focus on the content, use the saved time for yourself!
扩展基本信息
名称 | |
ID | gdoohnigblfkgnoidfndpghlohkanpfd |
官方URL | https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd |
简介 | Save time while browsing the internet and get rid of tiresome ads! |
文件大小 | 55.48 KB |
安装次数 | 631 |
当前版本 | 2.2.2 |
更新时间 | 2022-11-08 |
上架时间 | 2022-11-08 |
开发者 | admin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video ads skipper", "short_name": "Video ads skipper", "description": "Save time while browsing the internet and get rid of tiresome ads!", "manifest_version": 3, "version": "2.2.2", "background": { "service_worker": "source\/worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "source\/content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "source\/content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "resource\/logo128.png" } } |