My Notes — Web Store
My Notes is a Chrome extension for simple and fast note-taking.
Write down your ideas, notes, todos, clipboard, articles, and other, all effortlessly in a Chrome's New Tab.
→ All notes available inside your Chrome (How to open)
→ All notes saved automatically
→ All notes synchronized in every open window as you edit them
→ Can use HTML
→ Great as a Clipboard
→ Can send text between computers (Context menu)
→ Can store notes to Google Drive and edit them from other devices (Google Drive Sync)
→ Themes (Light, Dark, Custom)
→ Hotkeys
→ Works offline
My Notes:
- Click on My Notes icon in Chrome toolbar
- In every new tab (see Options)
- Use Hotkey (see Options)
Options:
- Click on the gear icon in the bottom left corner
- Right-click on My Notes icon in the Chrome toolbar and select Options
- Use Hotkey (see Options)
Context menu allows you to quickly save the selected text to My Notes Clipboard (a special note in My Notes).
Saves the selected text to My Notes Clipboard in your current computer. My Notes doesn't have to be open.
Saves the selected text to My Notes Clipboard in your other computer(s). My Notes needs to be open in the second computer and same Google Account needs to be used.
Google Drive Sync (see Options) saves your notes to Google Drive and synchronizes the changes between your local My Notes and your Google Drive every time you hit the Sync button (bottom left corner).
Benefits:
- backup of notes in your Google Drive
- notes can be restored in the future if My Notes is re-installed, by re-enabling Google Drive Sync
- notes can be edited from Google Drive if needed (or from other devices that have access to Google Drive)
- notes can be edited from other computers where My Notes is installed and Google Drive Sync is enabled (using same Google Account is needed)
Notes are uploaded to your Google Drive to the folder My Notes. This folder is created automatically. If the folder exists from a previous installation, notes are downloaded and uploaded.
Notes are synchronized every time you hit the Sync button (bottom left corner). Synchronization works in both ways — to Google Drive, from Google Drive.
My Notes has only access to the folder My Notes. It cannot see any other files in your Google Drive.
background/
google-drive/ # Everything related to Google Drive Sync
# - File operations (List, Create, Get, Update, Delete)
# - Synchronization (to Google Drive, from Google Drive)
# - Queries (find My Notes folder, list files in My Notes folder)
# - Multipart bodies (create My Notes folder, create file, update file)
# - Tests
init/ # Run when My Notes is installed/updated
# - Sets a Unique ID for My Notes installation (used by Context menu), if not already set
# - Migrates notes and options
# - Creates Context menu and attaches the events
# - Creates a Notification when My Notes is installed/updated
# - Registers the ways to open My Notes (icon click, in every New Tab)
# - Registers events to trigger Google Drive Sync from My Notes
images/ # Images and icons used in My Notes or README
themes/ # Light, Dark, Custom
notes/ # Everything related to Notes
# - Create/Rename/Delete notes; Note editing, Note saving
# - Toolbar
# - Every UI init and update when data changes
# - Registers commands (Toggle Focus mode - can be enabled in Options)
options/ # Everything related to Options
# - Font type, Font size, Theme, etc.
# - Every UI init and update when data changes
shared/ # Everything common (used at more places)
# - Date formatting (Last sync)
# - Managing the permissions (Requesting, Removing, Checking)
# - Helpers for Chrome Storage
# - Default values (Notes, Options)
tests/ # Entrypoint for tests
# - Runs every __tests__/index.html in the project
# - Prints "net::ERR_FILE_NOT_FOUND" if the test file is not found
# - Prints "Assertion failed: console.assert" if any assertion failed
.eslintrc # To enforce code quality and same coding style
.gitignore # To exclude any generated files (only .DS_Store at this point)
LICENSE # MIT
manifest.json # Main extension file
background.html # Entrypoint for background page
background.js
notes.html # Entrypoint for notes
notes.css
notes.js
options.html # Entrypoint for options
options.css
options.js
README.md
My Notes has the permissions listed in manifest.json.
Required:
"storage"— used to save the notes and options to Chrome Storage"contextMenus"— used to create My Notes Context menu
Optional:
"tabs"— used by Open My Notes in every New Tab (see Options)"identity"— used by Enable Google Drive Sync (see Options)
"tabs" is a more powerful permission — the displayed warning may contain an unrelated message — It can: Read your Browsing history.
Created with ❤ in 2019.