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은(는) Odd Extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Adblock - best ad blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}