Video ads skipper

Save time while browsing the internet and get rid of tiresome ads!

Video ads skipper là gì?

Video ads skipper là một tiện ích mở rộng Chrome được phát triển bởi admin, và tính năng chính của nó là "Save time while browsing the internet and get rid of tiresome ads!".

Ả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 Video ads skipper

Tải xuống các tệp mở rộng Video ads skipper 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

                        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!                    

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

Tên Video ads skipper Video ads skipper
ID gdoohnigblfkgnoidfndpghlohkanpfd
URL Chính Thức https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd
Mô tả Save time while browsing the internet and get rid of tiresome ads!
Kích Thước Tệp 55.48 KB
Số Lần Cài Đặt 631
Phiên Bản Hiện Tại 2.2.2
Cập Nhật Lần Cuối 2022-11-08
Ngày Phát Hành 2022-11-08
Nhà Phát Triển admin
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": "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"
    }
}