Unedit and Undelete for Reddit

Show original comments and posts from before they were edited or removed

Qu'est-ce que Unedit and Undelete for Reddit ?

Unedit and Undelete for Reddit est une extension Chrome développée par DenverCoder1, et sa fonction principale est "Show original comments and posts from before they were edited or removed".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Unedit and Undelete for Reddit

Téléchargez les fichiers d'extension Unedit and Undelete for Reddit 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

                        =====================
⚠️ Warning - READ THIS FIRST

Unedit and Undelete for Reddit relies on Pushshift to work.

At this time, Pushshift is only available to approved moderators as announced at https://redd.it/14ei799

Checking r/pushshift for updates is recommended.

June 22, 2023
=====================

View original comments and submissions from before they were edited or deleted directly within Reddit.

The unedited post will be displayed inline, right below the current comment or submission's text.

This script is compatible with both Reddit's Redesign and Old Reddit.

The Pushshift Reddit API is used for fetching the comments and submissions as they will be archived soon after they have been posted.                    

Informations de Base sur l'Extension

Nom Unedit and Undelete for Reddit Unedit and Undelete for Reddit
ID cnpmnmpafbfojcoofaobmhmafiflgmka
URL Officiel https://chromewebstore.google.com/detail/unedit-and-undelete-for-r/cnpmnmpafbfojcoofaobmhmafiflgmka
Description Show original comments and posts from before they were edited or removed
Taille du Fichier 636 KB
Nombre d'Installations 2,101
Version Actuelle 3.17.4
Dernière Mise à Jour 2023-06-25
Date de Publication 2022-06-07
Évaluation 4.09/5 Total 11 Évaluations
Développeur DenverCoder1
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/DenverCoder1/Unedit-for-Reddit
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Unedit and Undelete for Reddit",
    "description": "Show original comments and posts from before they were edited or removed",
    "version": "3.17.4",
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*.reddit.com\/",
                "*:\/\/*.reddit.com\/me\/f\/*",
                "*:\/\/*.reddit.com\/message\/*",
                "*:\/\/*.reddit.com\/r\/*",
                "*:\/\/*.reddit.com\/user\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.reddit.com\/*\/about\/banned*",
                "*:\/\/*.reddit.com\/*\/about\/contributors*",
                "*:\/\/*.reddit.com\/*\/about\/edit*",
                "*:\/\/*.reddit.com\/*\/about\/flair*",
                "*:\/\/*.reddit.com\/*\/about\/log*",
                "*:\/\/*.reddit.com\/*\/about\/moderators*",
                "*:\/\/*.reddit.com\/*\/about\/muted*",
                "*:\/\/*.reddit.com\/*\/about\/rules*",
                "*:\/\/*.reddit.com\/*\/about\/stylesheet*",
                "*:\/\/*.reddit.com\/*\/about\/traffic*",
                "*:\/\/*.reddit.com\/*\/wiki\/*",
                "*:\/\/mod.reddit.com\/*"
            ],
            "js": [
                "vendor\/showdown.min.js",
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "resources": [
                "vendor\/showdown.min.js.map"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/logo64.png",
        "default_title": "Unedit and Undelete for Reddit"
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "host_permissions": [
        "https:\/\/api.pushshift.io\/reddit\/search\/*"
    ],
    "permissions": [
        "storage"
    ]
}