SkipAds

Utility to skip ad automatically

什么是SkipAds?

SkipAds是由Aman A. Agarwal开发的Chrome扩展程序,该扩展的主要功能是“Utility to skip ad automatically”。

下载SkipAds扩展crx文件

下载SkipAds扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - Use this extension to automatically skip ads on Youtube. It just works. 
- Detects a Youtube webpage and only then works in the background. 
- Also added is a mute feature which mutes the ads and unmutes when the video playback resumes to give you uninterrupted experience
- Support for other streaming services like Saavn, Gaana, etc. to roll out in future, so stay tuned.

**Bug Fixes**
- Now works without any need for reload.                    

扩展基本信息

名称 SkipAds SkipAds
ID fmkjadgnhcdgdgllhfdimhgocdienbdm
官方URL https://chrome.google.com/webstore/detail/skipads/fmkjadgnhcdgdgllhfdimhgocdienbdm
简介 Utility to skip ad automatically
文件大小 20.26 KB
安装次数 118
当前版本 0.3
更新时间 2018-07-26
上架时间 2018-07-26
评分 5.00/5 共2次评分
开发者 Aman A. Agarwal
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkipAds",
    "short_name": "SkipAds",
    "description": "Utility to skip ad automatically",
    "manifest_version": 2,
    "version": "0.3",
    "author": "Aman A. Agarwal",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}