Inspect and view changes in Unddit (Undelete Reddit) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Unddit (Undelete Reddit)",
"description": "Opens the current Reddit page on undelete.pullpush.io to view deleted posts and comments.",
"version": "1.0.0",
"permissions": [
"declarativeContent"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Open in Unddit",
"default_state": "disabled",
"default_icon": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
}
},
"icons": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"host_permissions": [
"*://*.reddit.com/*"
]
}