Nerds Note: WYSIWYG Markdown stored in URL

Nerds Note: WYSIWYG Markdown stored in URL

Simple WYSIWYG editor that stores notes in URL as Markdown, can sync to bookmarks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "author": "Hamed Khademi",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "version": "0.8.1",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon/icon-16.png",
    "128": "images/icon/icon-128.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon/icon-19.png",
      "38": "images/icon/icon-38.png"
    },
    "default_title": "__MSG_appName__"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "bookmarks",
    "tabs",
    "history",
    "webNavigation"
  ],
  "web_accessible_resources": [
    "index.html"
  ]
}