Inspect and view changes in Bizrobe Auto Follow up 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": 3,
"name": "Bizrobe Auto Follow up",
"description": "Auto email Follow Up extension for Gmail",
"icons": {
"128": "Bizrobe_Logo.png"
},
"action": {
"default_popup": "popup.html"
},
"version": "1.2.3",
"content_scripts": [
{
"matches": [
"https://mail.google.com/mail/*"
],
"js": [
"contentmang.js"
]
},
{
"matches": [
"https://mail.google.com/mail/*"
],
"js": [
"jquery.min.js",
"gmail.js",
"contentmang.js"
],
"css": [
"style.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "serviceWorker.js"
},
"permissions": [
"scripting"
],
"host_permissions": [
"https://mail.google.com/mail/*"
]
}