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",
"name": "Real Estate Agent Review Scraper",
"author": "SAM",
"manifest_version": 3,
"description": "This extension will scrape real estate agent review websites and automatically post them on your own personal website",
"version": "1.2",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "16.png",
"default_popup": "popup.html",
"default_title": "FSBO Scraper"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.zillow.com\/profile\/*"
],
"js": [
"jquery.js",
"script.js"
],
"all_frames": false,
"run_at": "document_idle"
}
],
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"content_security_policy": {
"extension_page": "script-src 'self' https:\/\/sag.gemquery.com; object-src 'self'"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.zillow.com\/profile\/*",
"https:\/\/sag.gemquery.com\/csv-files\/listings-david-west-sells-houses.csv"
]
}