No awards for Reddit

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

Wat is No awards for Reddit?

No awards for Reddit is een Chrome-extensie ontwikkeld door datguyducky, en de belangrijkste functie is "Hide awards all over the redesigned and old Reddit (on posts, comments and more)".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie No awards for Reddit

Download No awards for Reddit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam No awards for Reddit No awards for Reddit
ID ehpnjdkpdllckhmbglbpdbmddcnloeep
Officiële URL https://chrome.google.com/webstore/detail/ehpnjdkpdllckhmbglbpdbmddcnloeep
Beschrijving Hide awards all over the redesigned and old Reddit (on posts, comments and more)
Bestandsgrootte 20.5 KB
Aantal Installaties 93
Huidige Versie 2.2.3
Laatst Bijgewerkt 2023-06-08
Publicatiedatum 2020-08-04
Beoordeling 4.83/5 Totaal 6 Beoordelingen
Ontwikkelaar datguyducky
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/datguyducky/no-awards-fr
Help Pagina-URL https://github.com/datguyducky/no-awards-fr
Ondersteunde Talen 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"
    ]
}