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": "NY Property Tax Grievance Express",
"version": "1.0",
"description": "NY Property Tax Grievance Express is your go-to Chrome extension for grieving your New York property taxes.",
"permissions": [
"storage",
"windows"
],
"icons": {
"16": "assets\/nassau.png",
"48": "assets\/nassau.png",
"128": "assets\/nassau.png"
},
"host_permissions": [
"*:\/\/*.nassaucountyny.gov\/*",
"*:\/\/*.nypropertytax.org\/*"
],
"background": {
"service_worker": "background\/background.js"
},
"action": {
"default_title": "Nassau County LRV Helper"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.nassaucountyny.gov\/*",
"*:\/\/*.nypropertytax.org\/*"
],
"js": [
"content\/content.js"
],
"css": [
"content\/content.css"
]
}
]
}