Inspect and view changes in Hatch Native Messenger 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": "Hatch Native Messenger",
"version": "0.4.0",
"manifest_version": 3,
"description": "Relays messages to/from the Hatch native printing service for the Evergreen ILS web client.",
"icons": {
"48": "icon_48.png",
"96": "icon_96.png",
"128": "icon_128.png"
},
"background": {
"service_worker": "extension.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*/eg/staff/*",
"https://*/eg2/*/staff/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"action": {
"default_title": "Hatch",
"default_icon": {
"48": "icon_48.png",
"96": "icon_96.png",
"128": "icon_128.png"
}
},
"permissions": [
"nativeMessaging"
],
"minimum_chrome_version": "88"
}