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 Bro",
"version": "1.7.2",
"description": "Filters duplicate Reddit images and bulk-saves viewed media in one ZIP.",
"host_permissions": [
"*:\/\/*.reddit.com\/*",
"*:\/\/*.redd.it\/*",
"*:\/\/*.redgifs.com\/*",
"*:\/\/*.rapidsave.com\/*"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_title": "Reddit Bro",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"icons\/icon32.png",
"icons\/icon128.png"
],
"matches": [
"https:\/\/*.reddit.com\/*"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/www.reddit.com\/*",
"https:\/\/old.reddit.com\/*"
],
"js": [
"js\/base.js",
"js\/www.js",
"js\/old.js",
"js\/download.js",
"js\/run.js",
"js\/jszip.js"
],
"css": [
"css\/base.css",
"css\/download.css"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.redgifs.com\/*",
"*:\/\/*.rapidsave.com\/*"
],
"js": [
"js\/communicator.js",
"js\/popupalive.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.redgifs.com\/ifr\/*"
],
"js": [
"js\/redgifs-stop-autoplay.js"
],
"run_at": "document_end",
"all_frames": true
}
]
}