Inspect and view changes in New Tab Draft 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",
"name": "New Tab Draft",
"short_name": "Draft",
"version": "0.3.8",
"description": "Simple & clean writing experience on browser new tab.",
"manifest_version": 3,
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"service_worker": "js/main.bundle.js"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"permissions": [
"fontSettings"
],
"web_accessible_resources": [
{
"resources": [
"sandbox.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
},
"sandbox": {
"pages": [
"sandbox.html"
]
}
}