9GAG AnonBlocker

Block posts of anonymous users in your stream on 9GAG

9GAG AnonBlocker क्या है?

9GAG AnonBlocker roman.anasal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block posts of anonymous users in your stream on 9GAG"।

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

screenshot
screenshot

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

crx प्रारूप में 9GAG AnonBlocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a browser extension that allows you to hide posts made by anonymous users on 9GAG.

Motivation for this is that it's not possible to block anonymous users and thus your stream gets cluttered with low-quality content.

As a solution this extension allows you to just hide all posts made by anonymous users. For this the extension adds a new button to the header navigation.

When you click on it all posts made by anonymous users get collapsed in your stream and the button's icon changes.

Enjoy your anonymous-free 9GAG stream!

## Known Bugs & Limitations

Unfortunately completely hiding or removing the anonymous posts will screw up scrolling using the keyboard shortcuts `J` and `K`. Therefore the blocked posts are "hidden" by restricting their height to 40px. This means those posts are still part of the stream but only their header is visible.

But this also means that scrolling using the keyboard shortcuts `J` and `K` will stop at these collapsed posts, too. This may give the impression that scrolling to the next post didn't work correctly.                    

एक्सटेंशन की मूल जानकारी

नाम 9GAG AnonBlocker 9GAG AnonBlocker
ID aelmmdnbcnecjaojaknoabfiacddfmkl
आधिकारिक URL https://chromewebstore.google.com/detail/9gag-anonblocker/aelmmdnbcnecjaojaknoabfiacddfmkl
विवरण Block posts of anonymous users in your stream on 9GAG
फ़ाइल का आकार 10.87 KB
स्थापना संख्या 58
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2022-09-14
प्रकाशन तिथि 2022-09-10
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर roman.anasal
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/acran/9gag-anonblocker
सहायता पृष्ठ URL https://github.com/acran/9gag-anonblocker/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "9GAG AnonBlocker",
    "description": "Block posts of anonymous users in your stream on 9GAG",
    "homepage_url": "https:\/\/github.com\/acran\/9gag-anonblocker",
    "author": "Roman Anasal",
    "version": "1.0.0",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/show.svg",
                "icons\/hide.svg"
            ],
            "matches": [
                "https:\/\/9gag.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/9gag.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}