Adblock - best ad blocker

Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.

Adblock - best ad blockerคืออะไร?

Adblock - best ad blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Odd Extensions และคุณลักษณะหลักของมันคือ "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Adblock - best ad blocker

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

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

                        Adblock ensures a seamless browsing experience by eliminating annoying popups and intrusive ads on popular platforms like YouTube, Spotify, and Twitch. Say goodbye to interruptions during videos and music streaming. Customize your ad-blocking settings, enjoy faster page loading times, and save bandwidth. Enhance your online journey with Adblock, supporting a more pleasant browsing environment without compromising content creators' revenue—whitelist non-intrusive ads when appropriate.                    

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

ชื่อ Adblock - best ad blocker Adblock - best ad blocker
ID hlneapehiglcfldmddiclojadjnfhclm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/adblock-best-ad-blocker/hlneapehiglcfldmddiclojadjnfhclm
คำอธิบาย Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.
ขนาดไฟล์ 1.5 MB
จำนวนการติดตั้ง 48
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-12-21
วันที่เผยแพร่ 2023-12-21
ผู้พัฒนา Odd Extensions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adblock - best ad blocker",
    "description": "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "bestadblocker16.png",
        "48": "bestadblocker48.png",
        "128": "bestadblocker128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Adblock - best ad blocker",
        "default_icon": "bestadblocker16.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "contentScriptSpotify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "Youtube.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        },
        {
            "resources": [
                "contentScriptSpotify.js",
                "adsSweetalertSpotify.js",
                "adsAdsRemoveSpotify.js",
                "adswsHooksSpotify.js"
            ],
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ]
        }
    ]
}