Unedit and Undelete for Reddit

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

Unedit and Undelete for Redditとは何ですか?

Unedit and Undelete for RedditはDenverCoder1によって開発されたChromeの拡張機能で、その主な機能は「Show original comments and posts from before they were edited or removed」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Unedit and Undelete for Reddit拡張機能のCRXファイルをダウンロード

Unedit and Undelete for Reddit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Unedit and Undelete for Reddit Unedit and Undelete for Reddit
ID cnpmnmpafbfojcoofaobmhmafiflgmka
公式URL https://chromewebstore.google.com/detail/unedit-and-undelete-for-r/cnpmnmpafbfojcoofaobmhmafiflgmka
説明 Show original comments and posts from before they were edited or removed
ファイルサイズ 636 KB
インストール数 2,101
現在のバージョン 3.17.4
最終更新日 2023-06-25
公開日 2022-06-07
評価 4.09/5 合計 11 レビュー
開発者 DenverCoder1
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/DenverCoder1/Unedit-for-Reddit
対応言語 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"
    ]
}