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 Scrapper",
"version": "1.1.0",
"description": "Scrape Reddit posts directly from the side panel.",
"permissions": [
"activeTab",
"sidePanel",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"*:\/\/*.reddit.com\/*",
"https:\/\/auseekingalpha.github.io\/*"
],
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"content\/content-script.js"
],
"run_at": "document_idle"
}
],
"side_panel": {
"default_path": "index.html"
},
"action": {
"default_title": "Open Scrapper",
"default_icon": "reddit-logo.png"
},
"icons": {
"16": "reddit-logo.png",
"48": "reddit-logo.png",
"128": "reddit-logo.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}