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)”。
扩展截图
下载No awards for Reddit扩展crx文件
下载No awards for Reddit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
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" ] } |