OmniMemo with Google sheet

OmniMemo with Google sheet

This extension enables you to save memo into your spreadsheet by typing "note <your message>" in Chrome's Omnibox (the address bar).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OmniMemo with Google sheet",
  "short_name": "OmniMemoWithSheet",
  "manifest_version": 3,
  "version": "1.1",
  "description": "This extension enables you to save memo into your spreadsheet by typing \"note <your message>\" in Chrome's Omnibox (the address bar).",
  "omnibox": {
    "keyword": "note"
  },
  "icons": {
    "128": "note_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://script.google.com/*"
  ]
}