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": "RedChecker",
"version": "3.2.5",
"description": "Check your Reddit posts for subreddit rule violations before posting.",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"https:\/\/*.reddit.com\/*",
"https:\/\/rechecker-extension-backend-production.up.railway.app\/*",
"https:\/\/rechecker-website-backend.vercel.app\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "RedChecker"
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"styles.css"
],
"matches": [
"https:\/\/www.reddit.com\/*",
"https:\/\/reddit.com\/*"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/www.redchecker.io\/*",
"https:\/\/redchecker.io\/*"
]
}
}