Inspect and view changes in nextdoor-extension-helper source codes across current and past versions
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",
"name": "nextdoor-extension-helper",
"version": "0.0.1",
"description": "Description of the extension",
"manifest_version": 3,
"icons": {
"16": "res/nextdoor_icon_32.png",
"48": "res/nextdoor_icon_32.png",
"128": "res/nextdoor_icon_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Nextdoor Pixel Helper",
"default_popup": "popup.html",
"default_icon": {
"19": "res/nextdoor_icon_32.png",
"38": "res/nextdoor_icon_32.png"
}
},
"permissions": [
"tabs",
"activeTab",
"webRequest",
"storage"
],
"host_permissions": [
"<all_urls>",
"*://flask.nextdoor.com/*",
"*://flask.nextdoor-test.com/*"
]
}