Inspect and view changes in Magic Text 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": "Magic Text",
"version": "1.1",
"description": "This extension will help you to write better",
"icons": {
"16": "assets/icon.png",
"48": "assets/icon.png",
"128": "assets/icon.png"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "assets/icon.png",
"48": "assets/icon.png",
"128": "assets/icon.png"
},
"default_title": "Magic Text"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"all_frames": true,
"run_at": "document_idle"
},
{
"matches": [
"https://docs.google.com/document/d/*"
],
"js": [
"googleDocs.js"
],
"css": [
"styles.css"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"clipboardRead",
"clipboardWrite"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"assets/*"
],
"matches": [
"<all_urls>"
]
}
]
}