Inspect and view changes in GoEmailTracker-Email Tracker,Template,chatGPT 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
{
"name": "GoEmailTracker-Email Tracker,Template,chatGPT",
"short_name": "GoEmailTracker",
"description": "Email tracker for Gmail and Google Workspace (G Suite). Email opens tracking and link clicks tracking. AI Email Writer with chatGPT.",
"version": "0.0.57",
"icons": {
"16": "img/16.png",
"48": "img/48.png",
"128": "img/128.png"
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/*",
"https://inbox.google.com/*"
],
"js": [
"js/moment.min.js",
"js/jquery.min.js",
"js/kefir.min.js",
"js/suneditor.min.js",
"lib.js",
"content.js"
],
"css": [
"css/fontawesome-all.css",
"css/fonts.css",
"css/suneditor.min.css",
"css/gmail.css"
],
"run_at": "document_end"
},
{
"matches": [
"https://goemailtracker.com/*"
],
"js": [
"js/jquery.min.js",
"lib.js",
"auth.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://chat.openai.com/*"
],
"js": [
"chatgpt.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "bg.js"
},
"action": {
"default_icon": {
"16": "img/16.png",
"48": "img/48.png"
},
"default_title": "GoEmailTracker",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"img/*",
"fonts/*"
],
"matches": [
"https://mail.google.com/*",
"https://inbox.google.com/*",
"https://goemailtracker.com/*"
]
}
],
"permissions": [
"storage",
"notifications",
"declarativeNetRequest",
"alarms",
"tabs",
"scripting"
],
"host_permissions": [
"*://mail.google.com/",
"*://goemailtracker.com/"
],
"manifest_version": 3,
"update_url": "https://clients2.google.com/service/update2/crx"
}