Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.0.0",
"description": "__MSG_appDesc__",
"default_locale": "en",
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"content_script.js"
],
"matches": [
"https:\/\/old.reddit.com\/r\/*\/comments\/*"
],
"run_at": "document_idle"
}
],
"permissions": [],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}