Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Auto-Expand Comments For Reddit",
"version": "1.1.0",
"description": "Automatically expands all Reddit comments.",
"author": "Marking The Way LLC",
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.reddit.com\/r\/*\/comments\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
]
}