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": "Real Estate Comments",
"version": "1.4.2",
"description": "Adds a comment section on realestate.com.au and domain.com.au property listings",
"icons": {
"48": "icons\/icon-48.png",
"96": "icons\/icon-96.png",
"128": "icons\/icon-128.png"
},
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https:\/\/www.realestate.com.au\/*",
"https:\/\/realestate.com.au\/*",
"https:\/\/www.domain.com.au\/*",
"https:\/\/domain.com.au\/*"
],
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.realestate.com.au\/*",
"https:\/\/realestate.com.au\/*",
"https:\/\/www.domain.com.au\/*",
"https:\/\/domain.com.au\/*"
],
"js": [
"content.bundle.js"
],
"css": [
"src\/styles\/panel.css",
"src\/styles\/comments.css",
"src\/styles\/form.css",
"src\/styles\/markdown.css",
"src\/styles\/modals.css",
"src\/styles\/responsive.css"
],
"run_at": "document_end"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}