Find your next buy-to-let investment.
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": "Propeller — Buy-To-Let Calculator",
"short_name": "Propeller",
"description": "Find your next buy-to-let investment.",
"version": "1.2",
"homepage_url": "https://www.getmypropeller.com",
"icons": {
"128": "images/icon.png"
},
"content_scripts": [
{
"js": [
"assets/content.js"
],
"css": [
"assets/content.css"
],
"matches": [
"https://www.rightmove.co.uk/properties/*"
]
}
],
"background": {
"service_worker": "assets/background.js",
"type": "module"
},
"web_accessible_resources": [
{
"matches": [
"https://*/*"
],
"resources": [
"assets/*",
"fonts/*.ttf"
]
}
],
"permissions": [
"storage"
]
}