reveddit real-time
reveddit notifies you when any of your content on reddit has been removed.
什么是reveddit real-time?
reveddit real-time是由https://reveddit.com开发的Chrome扩展程序,该扩展的主要功能是“reveddit notifies you when any of your content on reddit has been removed.”。
扩展截图
下载reveddit real-time扩展crx文件
下载reveddit real-time扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | ickfhlplfbipnfahjbeongebnmojbnhm |
| 官方URL | https://chromewebstore.google.com/detail/reveddit-real-time/ickfhlplfbipnfahjbeongebnmojbnhm |
| 简介 | reveddit notifies you when any of your content on reddit has been removed. |
| 文件大小 | 1.69 MB |
| 安装次数 | 6,525 |
| 当前版本 | 0.0.3.0 |
| 更新时间 | 2023-07-16 |
| 上架时间 | 2019-12-29 |
| 评分 | 3.80/5 共10次评分 |
| 开发者 | https://reveddit.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://docs.google.com/document/d/e/2PACX-1vTxfh-y3cnIE1Y495pfcJykWNLQRg8xIYLOZ7xHqcaktjI_Y_N5ZQuAnfMhtOrJaDD8bUirVQkD8tuy/pub |
| 支持的语言 | 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"
} | |