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": "Downloader for Reddit - RedditGrab",
"description": "Download images and videos from Reddit posts (including Redgifs)",
"version": "1.0.6",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"permissions": [
"downloads",
"activeTab",
"storage",
"tabs",
"offscreen",
"sidePanel"
],
"host_permissions": [
"*:\/\/*.reddit.com\/*",
"*:\/\/*.redd.it\/*",
"*:\/\/*.redgifs.com\/*",
"*:\/\/api.redgifs.com\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval' 'wasm-unsafe-eval'; child-src 'self';"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"ffmpeg\/*"
]
},
{
"resources": [
"content-scripts\/download-button.css"
],
"matches": [
"*:\/\/*.reddit.com\/*"
]
}
],
"action": [],
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"content-scripts\/download-button.js"
]
}
]
}