One click to scrape Airbnb data and export them to a CSV, JSON, and XLSX (Excel) file.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.0.0",
"description": "__MSG_appDesc__",
"options_ui": {
"page": "src/pages/options/index.html"
},
"background": {
"service_worker": "src/pages/background/index.js",
"type": "module"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": "icon-128.png"
},
"icons": {
"128": "icon-128.png"
},
"host_permissions": [
"*://*.airbnb.com/*"
],
"permissions": [
"tabs",
"storage",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"src/pages/content/index.js"
]
}
],
"devtools_page": "src/pages/devtools/index.html",
"web_accessible_resources": [
{
"resources": [
"contentStyle.css",
"icon-128.png",
"icon-34.png"
],
"matches": []
}
],
"default_locale": "en"
}