Inspect and view changes in MagicWriter - Your AI Email Writer Assistant 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
{
"action": {
"default_popup": "src/popup/popup.html"
},
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"content_scripts": [
{
"css": [
"src/clients/common/common.css"
],
"js": [
"src/clients/common/index.js",
"src/clients/common/newEmail.js"
],
"matches": [
"https://mail.google.com/mail/*"
],
"run_at": "document_start"
},
{
"css": [
"src/clients/common/newEmail.css"
],
"js": [
"src/clients/common/newEmail.js"
],
"matches": [
"https://mail.google.com/mail/*"
],
"run_at": "document_start"
},
{
"css": [
"src/clients/gmail/styles.css"
],
"js": [
"src/clients/gmail/libs/jquery-3.6.1.min.js",
"src/clients/gmail/libs/gmail.js"
],
"matches": [
"https://mail.google.com/*"
],
"run_at": "document_start"
},
{
"css": [
"src/clients/gmail/styles.css"
],
"js": [
"src/clients/gmail/index.js"
],
"matches": [
"https://mail.google.com/mail/*"
],
"run_at": "document_end"
}
],
"description": "Write emails 10x faster in any language with our AI-powered mail writer",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"manifest_version": 3,
"name": "MagicWriter - Your AI Email Writer Assistant",
"options_ui": {
"browser_style": true,
"open_in_tab": true,
"page": "src/options/index.html"
},
"permissions": [
"scripting",
"storage",
"activeTab"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0.2"
}