Unedit and Undelete for Reddit

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

Unedit and Undelete for Reddit là gì?

Unedit and Undelete for Reddit là một tiện ích mở rộng Chrome được phát triển bởi DenverCoder1, và tính năng chính của nó là "Show original comments and posts from before they were edited or removed".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Unedit and Undelete for Reddit

Tải xuống các tệp mở rộng Unedit and Undelete for Reddit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        =====================
⚠️ 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Unedit and Undelete for Reddit Unedit and Undelete for Reddit
ID cnpmnmpafbfojcoofaobmhmafiflgmka
URL Chính Thức https://chromewebstore.google.com/detail/unedit-and-undelete-for-r/cnpmnmpafbfojcoofaobmhmafiflgmka
Mô tả Show original comments and posts from before they were edited or removed
Kích Thước Tệp 636 KB
Số Lần Cài Đặt 2,101
Phiên Bản Hiện Tại 3.17.4
Cập Nhật Lần Cuối 2023-06-25
Ngày Phát Hành 2022-06-07
Đánh Giá 4.09/5 Tổng số 11 Đánh Giá
Nhà Phát Triển DenverCoder1
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DenverCoder1/Unedit-for-Reddit
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}