SkipAds

This clicks SkipAds button, removes Ad-banners for you

SkipAds là gì?

SkipAds là một tiện ích mở rộng Chrome được phát triển bởi Edwin, và tính năng chính của nó là "This clicks SkipAds button, removes Ad-banners for you".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SkipAds

Tải xuống các tệp mở rộng SkipAds dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SkipAds SkipAds
ID gccoifaifhhancbpbngckolbphodjiea
URL Chính Thức https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea
Mô tả This clicks SkipAds button, removes Ad-banners for you
Kích Thước Tệp 9.99 KB
Số Lần Cài Đặt 159
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2022-06-27
Ngày Phát Hành 2020-06-19
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Edwin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}