Inspect and view changes in Redraft 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": "Redraft",
"short_name": "redraft",
"version": "0.1.5",
"description": "Spend 10x less time writing emails - Redraft is a GPT writing assistant that drafts emails in your tone of voice",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://mail.google.com/*"
],
"js": [
"scripts/injectGmail.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://localhost/*",
"https://redraft.me/*"
],
"js": [
"scripts/auth.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"scripts/gmail.js"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
}
}