9GAG AnonBlocker

Block posts of anonymous users in your stream on 9GAG

9GAG AnonBlocker란 무엇입니까?

9GAG AnonBlocker은(는) roman.anasal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block posts of anonymous users in your stream on 9GAG"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

9GAG AnonBlocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}