Notekeeper

Notekeeper

Notekeeper makes new tabs meaningful with your own auto-saving text editor. Now with a sidebar companion! Use Alt + Shift + N to toggle the text editor inside the Firefox sidebar.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "New Tab Notes",
  "version": "1.1.0",
  "description": "Transform your New Tab into a minimalist, auto-saving text editor.",
  "browser_specific_settings": {
    "gecko": {
      "id": "newtab-notes@semanticdata",
      "strict_min_version": "100.0"
    }
  },
  "author": "semanticdata",
  "icons": {
    "48": "src/icon48.png",
    "512": "src/icon512.png"
  },
  "permissions": [
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "src/newtab.html"
  },
  "browser_action": {
    "default_title": "New Tab Notes",
    "default_icon": {
      "48": "src/icon48.png",
      "512": "src/icon512.png"
    }
  },
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "options_ui": {
    "page": "src/options/options.html",
    "browser_style": true
  },
  "sidebar_action": {
    "default_icon": {
      "48": "src/icon48.png",
      "512": "src/icon512.png"
    },
    "default_title": "Sidebar Notes",
    "default_panel": "src/sidebar/panel.html"
  },
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+Shift+N"
      },
      "description": "Toggle the Sidebar Notes."
    }
  }
}