No awards for Reddit

Hide awards all over the redesigned and old Reddit (on posts, comments and more)

No awards for Reddit란 무엇입니까?

No awards for Reddit은(는) datguyducky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide awards all over the redesigned and old Reddit (on posts, comments and more)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

No awards for Reddit 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        I'm sure I'm not the only one annoyed by the awards on Reddit. So I created this simple extension to completely hide them (on posts, comments and more), so if you would like to browse Reddit without them please give this extension a go :)

- it's fully open-source
- 100% free
- used daily by me so with constant support, and bug-fixes are developed and published as soon as possible
- works both for redesigned and old versions of Reddit
- comes with a settings pop-up so YOU can decide which awards you want to see, and which you prefer to fully hide                    

확장 프로그램 기본 정보

이름 No awards for Reddit No awards for Reddit
ID ehpnjdkpdllckhmbglbpdbmddcnloeep
공식 URL https://chrome.google.com/webstore/detail/ehpnjdkpdllckhmbglbpdbmddcnloeep
설명 Hide awards all over the redesigned and old Reddit (on posts, comments and more)
파일 크기 20.5 KB
설치 횟수 93
현재 버전 2.2.3
최근 업데이트 2023-06-08
출시 날짜 2020-08-04
평점 4.83/5 총 6 개의 평점
개발자 datguyducky
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/datguyducky/no-awards-fr
도움말 페이지 URL https://github.com/datguyducky/no-awards-fr
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.2.3",
    "name": "No awards for Reddit",
    "description": "Hide awards all over the redesigned and old Reddit (on posts, comments and more)",
    "author": "datguyducky",
    "icons": {
        "48": "no-awards48.png",
        "96": "no-awards96.png",
        "128": "no-awards128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "no-awards16.png",
            "24": "no-awards24.png",
            "32": "no-awards32.png"
        },
        "default_title": "No Awards for Reddit",
        "default_popup": "no-awards-menu.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "no-awards.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/commentsAndPostsAwards.css",
        "css\/getCoinsBtn.css",
        "css\/giveAwardsBtn.css",
        "css\/profileAwards.css"
    ]
}