Block Ads

Blocks ads and restrict advertisers from tracking your browsing activity

Block Adsคืออะไร?

Block Ads เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jagan Elavarasan และคุณลักษณะหลักของมันคือ "Blocks ads and restrict advertisers from tracking your browsing activity"

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

screenshot
screenshot
screenshot

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

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

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

                        # Block Ads
This is an Ad Blocker for blocking several known ad-providers on websites like youtube, facebook, reddit, hotstar and more. We restrict advertisers from tracking your browsing activity.

# Privacy
We don't collect any information about your personal data and the websites you visit.
We don't transfer any data from your browser to outside.

Note: you can enable/disable extension at any time by clicking on the Block Ads icon and toggling the Enable/Disable Button.
Report your issues here - https://github.com/jagan-jaya/Block-Ads/issues                    

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

ชื่อ Block Ads Block Ads
ID odheabhapgcokfmbelploedoeooilfgd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/block-ads/odheabhapgcokfmbelploedoeooilfgd
คำอธิบาย Blocks ads and restrict advertisers from tracking your browsing activity
ขนาดไฟล์ 23.86 KB
จำนวนการติดตั้ง 3,034
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2021-02-07
วันที่เผยแพร่ 2021-01-09
คะแนน 4.08/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา Jagan Elavarasan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block Ads",
    "version": "2.0",
    "description": "Blocks ads and restrict advertisers from tracking your browsing activity",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html",
        "default_title": "Blocks ads while browsing web and watching videos on youtube, facebook, reddit, hotstar and more websites."
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.hotstar.com\/*"
            ],
            "js": [
                "contentScript_hotstar.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "contentScript_fb.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "contentScript_linkedin.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript_youtube.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript_gads.js"
            ],
            "run_at": "document_start",
            "exclude_matches": [
                "https:\/\/www.hotstar.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.facebook.com\/*",
                "https:\/\/www.linkedin.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}