EasyNotes: The best sticky notes!

EasyNotes: The best sticky notes!

Crea notas en las webs que visitas.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EasyNotes: The best sticky notes!",
  "short_name": "EasyNotes",
  "description": "Crea notas en las webs que visitas.",
  "version": "3.3",
  "version_name": "3.3",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "EasyNotes",
    "default-icon": {
      "16": "src/img/logo16.png",
      "24": "src/img/logo24.png",
      "32": "src/img/logo32.png",
      "128": "src/img/logo128.png"
    }
  },
  "web_accessible_resources": [
    "src/img/github.svg",
    "src/img/logo128.png",
    "src/img/coins.svg",
    "src/img/eye-slash.svg",
    "src/img/trash.svg",
    "src/img/ellipsis-v.svg",
    "src/img/exclamation-triangle.svg"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      }
    },
    "showHidden": {
      "suggested-key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Muestra y oculta las notas"
    },
    "createNote": {
      "suggested-key": {
        "default": "Ctrl+Shift+A",
        "mac": "Command+Shift+A"
      },
      "description": "Crea una nueva nota en la pestaña activa"
    }
  },
  "icons": {
    "16": "src/img/logo16.png",
    "24": "src/img/logo24.png",
    "32": "src/img/logo32.png",
    "128": "src/img/logo128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background/APIchrome.js",
      "background/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScripts/APIchrome.js",
        "contentScripts/dragDrop.js",
        "contentScripts/notes.js",
        "contentScripts/extension.js"
      ],
      "css": [
        "contentScripts/style.css"
      ]
    }
  ]
}