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 JSON Extractor",
"version": "1.0",
"description": "Extracts upvotes, name and content from Reddit posts and comments",
"permissions": [
"activeTab",
"notifications",
"https:\/\/*.reddit.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"action": {
"default_icon": "icon.png",
"default_title": "Extract Reddit JSON"
},
"web_accessible_resources": [
{
"resources": [
"icon.png"
],
"matches": [
"<all_urls>"
]
}
]
}