YouTube NoAds!

The add-on blocks ads presented in videos on youtube.

What is YouTube NoAds!?

YouTube NoAds! is a Chrome extension developed by info, and its main feature is "The add-on blocks ads presented in videos on youtube.".

Extension Screenshots

screenshot

Download YouTube NoAds! Extension CRX File

Download YouTube NoAds! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active.                    

Extension Basic Information

Name YouTube NoAds! YouTube NoAds!
ID plohhfnpbopkgjhbaljjepioomefkaog
Official URL https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog
Description The add-on blocks ads presented in videos on youtube.
File Size 166 KB
Installation Count 761
Current Version 2.0.0
Last Updated 2022-11-30
Publish Date 2022-11-30
Rating 4.50/5 Total 2 Ratings
Developer info
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube NoAds!",
    "description": "The add-on blocks ads presented in videos on youtube.",
    "manifest_version": 3,
    "version": "2.0.0",
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "resource\/youtube(3).png"
    }
}