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": "Reddit Post Summarizer \u2013 AI Thread Summaries",
"version": "1.1.2",
"description": "Skip endless scrolling. Get instant AI summaries of Reddit threads, automatically.",
"permissions": [
"identity",
"storage",
"tabs"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/icons\/icon.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*",
"*:\/\/reddit.com\/*"
],
"css": [
"styles.css"
],
"js": [
"libs\/jquery.min.js",
"libs\/bootstrap.bundle.min.js",
"content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"128": "icons\/icon128.png"
}
}