No awards for Reddit

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

What is No awards for Reddit?

No awards for Reddit is a Chrome extension developed by datguyducky, and its main feature is "Hide awards all over the redesigned and old Reddit (on posts, comments and more)".

Extension Screenshots

screenshot
screenshot

Download No awards for Reddit Extension CRX File

Download No awards for Reddit 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

                        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                    

Extension Basic Information

Name No awards for Reddit No awards for Reddit
ID ehpnjdkpdllckhmbglbpdbmddcnloeep
Official URL https://chrome.google.com/webstore/detail/ehpnjdkpdllckhmbglbpdbmddcnloeep
Description Hide awards all over the redesigned and old Reddit (on posts, comments and more)
File Size 20.5 KB
Installation Count 93
Current Version 2.2.3
Last Updated 2023-06-08
Publish Date 2020-08-04
Rating 4.83/5 Total 6 Ratings
Developer datguyducky
Email [email protected]
Payment Type free
Extension Website https://github.com/datguyducky/no-awards-fr
Help Page URL https://github.com/datguyducky/no-awards-fr
Supported Languages 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"
    ]
}