SkipAds

This clicks SkipAds button, removes Ad-banners for you

SkipAdsคืออะไร?

SkipAds เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Edwin และคุณลักษณะหลักของมันคือ "This clicks SkipAds button, removes Ad-banners for you"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SkipAds

ดาวน์โหลดไฟล์ส่วนขยาย SkipAds ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SkipAds SkipAds
ID gccoifaifhhancbpbngckolbphodjiea
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea
คำอธิบาย This clicks SkipAds button, removes Ad-banners for you
ขนาดไฟล์ 9.99 KB
จำนวนการติดตั้ง 159
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2022-06-27
วันที่เผยแพร่ 2020-06-19
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Edwin
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
}