reveddit real-time

reveddit notifies you when any of your content on reddit has been removed.

Qu'est-ce que reveddit real-time ?

reveddit real-time est une extension Chrome développée par https://reveddit.com, et sa fonction principale est "reveddit notifies you when any of your content on reddit has been removed.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension reveddit real-time

Téléchargez les fichiers d'extension reveddit real-time au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Features:

★ Automatic notification of mod-removed, reapproved, locked or unlocked reddit content
★ Monitor usernames or selected comments and posts
★ Works with both new and old reddit layouts
★ Show removal status of posts on their reddit.com comments pages, including for private subreddits, on both new and old reddit
★ Show locked status of posts on reddit.com subreddit pages
★ View the history of observed changes

Reveddit real-time tracks the content you post and notifies you when something is removed, locked, reapproved or unlocked. Upon installing the extension, it will automatically subscribe to your username. To subscribe to additional usernames, visit a /user page, click the extension icon, and click subscribe.

To monitor additional comments or posts, click the subscribe button beneath the item, or right-click on a link and choose `reveddit subscribe`. Note that subscribing to a post does not subscribe to its comments, only the post itself.

Reveddit real-time is developed independently and is not officially endorsed by or affiliated with reddit. Enhancements will be added as they are developed. You can support this work through a non-tax-deductible donation:

https://www.reveddit.com/about/donate

Note, the extension is not able to track content from private subreddits.

VERSION HISTORY:

2023/07/15 - 0.0.3.0
- stop using shared ID for oauth in accordance with recent Reddit API changes

2023/03/03 - 0.0.2.9
- auto-subscribe to current user if not subscribed and never unsubscribed

2023/03/01 - 0.0.2.8
- add Reveddit links for removed comments on new Reddit redesign

2023/02/20 - 0.0.2.7
- notify about Reddit removals indicated by removal_reason field

2023/02/16 - 0.0.2.6
- bug fix: post removal note was appearing on comment-link pages of unremoved posts

2023/02/14 - 0.0.2.5
- fix notifications for browsers set to use a non-english language

2023/02/14 - 0.0.2.4
- fix missing removal notice for 4+ year old posts on new Reddit redesign

2023-02-12 - 0.0.2.3
- fix repeat notifications, approved status must be repeatedly observed consecutively before notification

2023-01-21 - 0.0.2.2
- fix an incorrectly named function that may have introduced errors for long-time users with logs of over 500 removed items

2023-01-11 - 0.0.2.1
- add option to avoid repeat notifications, "same-status count before alert"

2022-10-28 - 0.0.2.0
- fix issue where notifications were only happening once per hour due to a newly imposed cache

2022-05-22 - 0.0.1.9
- make it more clear that post removal notices are created by this extension, not the website

2021-07-09 - 0.0.1.8
- remove comment ID from link to new reddit in extension's removal notices on old reddit. New reddit does not show post removal notices when viewing a link to a comment

2021-05-28 - 0.0.1.7
- fix issue that appeared to cause occasional logouts
- made monitoring quarantined content optional

2021-02-26 - 0.0.1.6
- add option to hide subscribe button
- using chrome manifest v3

2021-01-09 - 0.0.1.5
- only add quarantine cookie for reveddit.com requests

2021-01-03 - 0.0.1.4
- update to work with new reveddit website paths

2020-11-01 - 0.0.1.3
- prepare for chrome manifest v3

2020-04-19 - 0.0.1.2
- fixes the old.reddit.com removal notice on posts for deleted/removed crossposts

2020-04-19 - 0.0.1.1
- updates the notice that appears on deleted posts on old.reddit.com to handle html/css changes

2019-12-11 - 0.0.1.0
- initial release                    

Informations de Base sur l'Extension

Nom reveddit real-time reveddit real-time
ID ickfhlplfbipnfahjbeongebnmojbnhm
URL Officiel https://chromewebstore.google.com/detail/reveddit-real-time/ickfhlplfbipnfahjbeongebnmojbnhm
Description reveddit notifies you when any of your content on reddit has been removed.
Taille du Fichier 1.69 MB
Nombre d'Installations 6,525
Version Actuelle 0.0.3.0
Dernière Mise à Jour 2023-07-16
Date de Publication 2019-12-29
Évaluation 3.80/5 Total 10 Évaluations
Développeur https://reveddit.com
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://docs.google.com/document/d/e/2PACX-1vTxfh-y3cnIE1Y495pfcJykWNLQRg8xIYLOZ7xHqcaktjI_Y_N5ZQuAnfMhtOrJaDD8bUirVQkD8tuy/pub
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "reveddit real-time",
    "description": "reveddit notifies you when any of your content on reddit has been removed.",
    "version": "0.0.3.0",
    "permissions": [
        "cookies",
        "notifications",
        "alarms",
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/*.reddit.com\/*",
        "https:\/\/*.reveddit.com\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/history.html",
                "src\/other.html"
            ],
            "matches": []
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.reveddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "lib\/jquery-3.2.1.min.js",
                "lib\/arrive.js",
                "src\/content.js"
            ],
            "css": [
                "src\/content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "src\/options.html",
        "open_in_tab": false
    },
    "manifest_version": 3,
    "incognito": "split"
}