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"입니다.
확장 프로그램 스크린샷
Unedit and Undelete for Reddit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
===================== ⚠️ 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 |
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 |
이메일 | [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" ] } |