Enhanced Reddit notifier with detailed message tracking and scheduled alerts.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"description": "__MSG_description__",
"name": "__MSG_name__",
"version": "6.3.1",
"browser_specific_settings": {
"gecko": {
"strict_min_version": "109.0",
"id": "RedditNotifierPro@flytaly"
}
},
"background": {
"scripts": [
"./dist/background.js"
]
},
"permissions": [
"identity",
"storage",
"alarms",
"notifications",
"unlimitedStorage"
],
"icons": {
"48": "images/icon-48.png",
"96": "images/icon-96.png",
"128": "images/icon-128_chrome.png"
},
"host_permissions": [
"https://*.reddit.com/*"
],
"action": {
"default_title": "__MSG_extension_title__",
"default_popup": "dist/popup/index.html",
"default_icon": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"64": "images/icon-64.png"
},
"theme_icons": [
{
"dark": "images/icon-16.png",
"light": "images/icon-16-light.png",
"size": 16
},
{
"dark": "images/icon-32.png",
"light": "images/icon-32-light.png",
"size": 32
},
{
"dark": "images/icon-64.png",
"light": "images/icon-64-light.png",
"size": 64
}
]
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+S"
}
}
},
"options_ui": {
"page": "dist/options/watch.html",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}