Simple as F**k Notes

Simple as F**k Notes

Simple as F**k Notes is available to you everywhere thanks to Chrome sync.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Simple as F**k Notes",
  "version": "2.1",
  "description": "Simple as F**k Notes is available to you everywhere thanks to Chrome sync.",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "action": {
    "default_icon": "tab-icon.png",
    "default_title": "Notes",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css_file.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "tab-icon.png",
    "48": "notes48.png",
    "128": "notes128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*"
      ],
      "js": [
        "popup.js"
      ],
      "css": [
        "css_file.css"
      ]
    }
  ]
}