Quickly create new stuff.
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": "Create New",
"description": "Quickly create new stuff.",
"version": "1.0.2",
"manifest_version": 3,
"background": {
"service_worker": "sw.js"
},
"icons": {
"48": "static/extension-48.png",
"128": "static/extension-128.png"
},
"action": {
"default_icon": {
"48": "static/extension-48.png",
"128": "static/extension-128.png"
},
"default_title": "Create New",
"default_popup": "/html/popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"options_ui": {
"page": "/html/options.html",
"open_in_tab": true
},
"commands": {
"launch-docs": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "Create New Google Docs File"
},
"launch-sheets": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Create New Google Sheets File"
},
"launch-slides": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Create New Google Slides File"
}
},
"homepage_url": "https://browsernative.com/quick-create-google-docs/"
}