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": "Swiss Tax Calculator BETA",
"version": "1.0",
"description": "Calculates and displays tax information for real estate websites.",
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Swiss Tax Calculator",
"default_popup": "popup\/popup.html"
},
"options_ui": {
"page": "options\/index.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"options\/data\/**",
"options\/styles\/**"
],
"matches": [
"*:\/\/*.newhome.ch\/*",
"*:\/\/*.immoscout24.ch\/*",
"*:\/\/*.homegate.ch\/*",
"*:\/\/*.flatfox.ch\/*",
"*:\/\/*.properstar.com\/*",
"*:\/\/*.comparis.ch\/*"
]
}
],
"icons": {
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.newhome.ch\/*",
"*:\/\/*.immoscout24.ch\/*",
"*:\/\/*.homegate.ch\/*",
"*:\/\/*.flatfox.ch\/*",
"*:\/\/*.properstar.com\/*",
"*:\/\/*.comparis.ch\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"styles\/injected.css"
]
}
]
}