Reddit Promoted Ad Blocker

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

Reddit Promoted Ad Blocker क्या है?

Reddit Promoted Ad Blocker MockeryDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide those pesky promoted Reddit ads that look like human posts!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Promoted Ad Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}