9GAG AnonBlocker

Block posts of anonymous users in your stream on 9GAG

What is 9GAG AnonBlocker?

9GAG AnonBlocker is a Chrome extension developed by roman.anasal, and its main feature is "Block posts of anonymous users in your stream on 9GAG".

Extension Screenshots

screenshot
screenshot

Download 9GAG AnonBlocker Extension CRX File

Download 9GAG AnonBlocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name 9GAG AnonBlocker 9GAG AnonBlocker
ID aelmmdnbcnecjaojaknoabfiacddfmkl
Official URL https://chromewebstore.google.com/detail/9gag-anonblocker/aelmmdnbcnecjaojaknoabfiacddfmkl
Description Block posts of anonymous users in your stream on 9GAG
File Size 10.87 KB
Installation Count 58
Current Version 1.0.0
Last Updated 2022-09-14
Publish Date 2022-09-10
Rating 3.00/5 Total 2 Ratings
Developer roman.anasal
Email [email protected]
Payment Type free
Extension Website https://github.com/acran/9gag-anonblocker
Help Page URL https://github.com/acran/9gag-anonblocker/issues
Supported Languages 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"
            ]
        }
    ]
}