Notes Kitty

Notes Kitty

The last note taking app you'll ever need.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notes Kitty",
  "short_name": "Notes Kitty",
  "version": "1.1",
  "description": "The last note taking app you'll ever need.",
  "permissions": [
    "cookies",
    "contextMenus",
    "storage",
    "declarativeContent",
    "activeTab",
    "tabs",
    "https://duckduckgo.com/*"
  ],
  "content_security_policy": "script-src  'self' https://www.gstatic.com https://cdn.firebase.com https://*.firebaseio.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://duckduckgo.com/*"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}