Inspect and view changes in EZOI QRcode print 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",
"manifest_version": 2,
"name": "EZOI QRcode print",
"description": "Print custom QRcodes from EZOfficeInventory using own QRcode generator",
"version": "1.0",
"content_scripts": [
{
"matches": [
"https://*.ezofficeinventory.com/*"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"background",
"downloads",
"storage"
],
"options_page": "options.html"
}