Inspect and view changes in Gmail AI Assistant - GmailPT 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": "Gmail AI Assistant - GmailPT",
"short_name": "GmailPT",
"description": "Boost your email productivity with GmailPT, AI email assistant for all webmails like Gmail, Outlook, Yahoo, and more.",
"version": "1.1.2.6",
"version_name": "1.1.2.6",
"author": "support@gmailpt.ai",
"homepage_url": "https://gmailpt.ai",
"options_page": "options.html",
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"cookies",
"scripting"
],
"host_permissions": [
"https://gmailpt.ai/*",
"http://127.0.0.1:8080/*"
],
"background": {
"service_worker": "js/background.min.js"
},
"action": {
"default_icon": {
"16": "img/GmailPT16-min.png",
"48": "img/GmailPT48-min.png",
"128": "img/GmailPT128-min.png"
},
"default_title": "GmailPT"
},
"icons": {
"16": "img/GmailPT16-min.png",
"48": "img/GmailPT48-min.png",
"128": "img/GmailPT128-min.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/jquery.min.js",
"js/GmailPT_content.min.js"
],
"css": [
"css/GmailPT_content.min.css",
"css/all.min.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"img/*.png",
"css/webfonts/*.ttf",
"css/webfonts/*.woff2",
"css/*.css"
],
"matches": [
"<all_urls>"
]
}
]
}