Reddit Promoted Ad Blocker

Hide those pesky promoted Reddit ads that look like human posts!

Reddit Promoted Ad Blocker란 무엇입니까?

Reddit Promoted Ad Blocker은(는) MockeryDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide those pesky promoted Reddit ads that look like human posts!"입니다.

확장 프로그램 스크린샷

screenshot

Reddit Promoted Ad Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Reddit Promoted Ad Blocker is used to automatically remove promoted posts on the new (and old!) Reddit layout. Save your brain the effort of having to distinguish real posts from promoted posts.

This extension was made for free. Donations are welcomed and appreciated: https://goo.gl/i7y6CF


PATCH NOTES (FEB. 2024):
- Updated to use manifest v3.

PATCH NOTES (DEC. 2020):
- Updated extension name.

PATCH NOTES (SEPT. 2019):
  - Updated to allow support for old.reddit.com. Current users will need 
    to allow permissions again to access this new domain.
  - Improved code based on a user's feedback. Thank you kind stranger!

✓ About Permissions & Privacy
As with all ad blocker extensions, this extension needs permissions to remove ads on reddit pages you view. All ad blocker detection takes place on your computer and does not see nor track any of your browsing history or any personally identifiable information.

✓ Terms of Use
Only works on reddit.com. No guarantee or warranty is given with the use of this software. The author shall not be held liable for any consequences by its use. Usage of this extension means that you agree to these terms.                    

확장 프로그램 기본 정보

이름 Reddit Promoted Ad Blocker Reddit Promoted Ad Blocker
ID mmnhjecbajmgkapcinkhdnjabclcnfpg
공식 URL https://chromewebstore.google.com/detail/reddit-promoted-ad-blocke/mmnhjecbajmgkapcinkhdnjabclcnfpg
설명 Hide those pesky promoted Reddit ads that look like human posts!
파일 크기 28.58 KB
설치 횟수 14,260
현재 버전 1.4
최근 업데이트 2024-02-28
출시 날짜 2019-09-03
평점 4.82/5 총 62 개의 평점
개발자 MockeryDev
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reddit Promoted Ad Blocker",
    "description": "Hide those pesky promoted Reddit ads that look like human posts!",
    "version": "1.4",
    "action": {
        "default_icon": {
            "16": "icon.png"
        }
    },
    "icons": {
        "16": "icon.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.reddit.com\/*",
                "*:\/\/old.reddit.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "scripts.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/www.reddit.com\/*",
        "*:\/\/old.reddit.com\/*"
    ]
}