Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Markdown New Tab",
"description": "A new tab page that acts as a markdown editor for notes.",
"version": "1.0.4",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
],
"chrome_url_overrides": {
"newtab": "new_tab.html"
},
"background": {
"service_worker": "background.js"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' data: https: http:;"
},
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.css",
"*.html"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_title": "Markdown New Tab",
"default_popup": "popup.html"
}
}