Through this extension users will be able to fetch data from Ezy-System to fill their required webforms.
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": "EzyForms",
"description": "Through this extension users will be able to fetch data from Ezy-System to fill their required webforms.",
"version": "1.2.0",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"js": [
"scripts/jquery.min.js",
"scripts/contentscript.js",
"scripts/common.js"
],
"matches": [
"*://*.immigration.govt.nz/*"
]
}
],
"host_permissions": [],
"action": {
"default_icon": "images/fav.png",
"default_popup": "popup.html"
},
"icons": {
"48": "images/fav.png"
}
}