rAger

rAger shows the account age and karma for all reddit accounts displayed on a page.

Τι είναι το rAger;

Το rAger είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://reveddit.com, και η κύρια λειτουργία του είναι "rAger shows the account age and karma for all reddit accounts displayed on a page.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης rAger

Λήψη αρχείων επέκτασης rAger σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This is a speedy app for displaying the age and combined karma count of all accounts on a page.

Say goodbye to hovering over usernames to get more info about them. It's all displayed upfront!

In addition, this app suite shows more fine-grained dates. Instead of seeing "1 year ago", when the app is active, you will see "1 year, 11 months ago", or whatever applies to that content. Enjoy!

rAger is developed independently and is not officially endorsed by or affiliated with reddit. Enhancements will be added as they are developed.

Source code: https://gitlab.com/rDevCoder/rAger

Version History:

2023-05-15 - 0.0.1.3
- always set exact time when timezone is set

2023-05-09 - 0.0.1.2
- fix bug from last update that caused extension to fail on new Reddit pages

2023-05-08 - 0.0.1.1
- add an option to select a timezone and show full date/time on old Reddit

2023-01-18 - 0.0.1.0
- populate data for new reddit's overlays and infinite scroll

2021-07-21 - 0.0.0.9
- Fix item creation time specificity
- known issue: item time specificity is broken in new reddit overlays

2021-06-20 - 0.0.0.8
- Fix bug where some authors' info was not filled in

2021-06-19 - 0.0.0.7
- fix when page has > 500 authors in view on page load, e.g. with reddit gold

2021-03-02 - 0.0.0.6
- update to work with changes in new reddit html
- chrome extension manifest v3

2019-10-13 - 0.0.0.5
- fixed issue causing some results to not display on new reddit

2018-09-04 - 0.0.0.4
- fixed issue where age + karma were being printed twice in redesign overlays
- fixed bug when determining whether the page is from the redesign or old reddit

2018-09-03 - 0.0.0.3
- works when clicking 'more comments'
- works in R.E.S. infinite scroll and in new reddit (redesign) infinite scroll

2018-09-02 - 0.0.0.2
- works in new reddit comment overlays
- works in new reddit when logged in or not

2018-09-01 - 0.0.0.1
- initial release                    

Βασικές Πληροφορίες Επέκτασης

Όνομα rAger rAger
ID fohlpjahcdbkpcckapphhpahbiajccmj
Επίσημο URL https://chromewebstore.google.com/detail/rager/fohlpjahcdbkpcckapphhpahbiajccmj
Περιγραφή rAger shows the account age and karma for all reddit accounts displayed on a page.
Μέγεθος Αρχείου 65.87 KB
Αριθμός Εγκαταστάσεων 304
Τρέχουσα Έκδοση 0.0.1.3
Τελευταία Ενημέρωση 2023-05-16
Ημερομηνία Δημοσίευσης 2019-10-12
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://reveddit.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.reveddit.com
Διεύθυνση URL της Σελίδας Βοήθειας https://docs.google.com/forms/d/e/1FAIpQLSdsQG9pjWO4WiSXgl23WXXKyZNAo5eQ913cuFDTxQdZhyWvDQ/viewform?usp=sf_link
URL της Σελίδας Πολιτικής Απορρήτου https://docs.google.com/document/d/e/2PACX-1vTxfh-y3cnIE1Y495pfcJykWNLQRg8xIYLOZ7xHqcaktjI_Y_N5ZQuAnfMhtOrJaDD8bUirVQkD8tuy/pub
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "rAger",
    "description": "rAger shows the account age and karma for all reddit accounts displayed on a page.",
    "version": "0.0.1.3",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/chrome-icon-128.png",
        "48": "icons\/chrome-icon-48.png",
        "32": "icons\/chrome-icon-32.png",
        "24": "icons\/chrome-icon-24.png",
        "16": "icons\/chrome-icon-16.png"
    },
    "action": {
        "default_icon": {
            "32": "icons\/chrome-icon-32.png",
            "24": "icons\/chrome-icon-24.png",
            "16": "icons\/chrome-icon-16.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "lib\/jquery-3.2.1.min.js",
                "lib\/arrive.min.js",
                "src\/auth.js",
                "src\/timezones.js",
                "src\/common.js",
                "src\/content.js"
            ],
            "css": [
                "src\/content.css"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/jquery-3.2.1.min.js",
                "src\/auth.js",
                "src\/common.js",
                "src\/new-reddit.js"
            ],
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}