Backnote

Backnote

Saving text snippets made easy. Call a tab on hotkeys and copy/paste text with just moving cursor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Backnote",
  "description": "Saving text snippets made easy. Call a tab on hotkeys and copy/paste text with just moving cursor.",
  "version": "1.71",
  "homepage_url": "https://polevoyd.com",
  "options_page": "options.html",
  "icons": {
    "128": "images/icon_on.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "images/icon_on.png"
    },
    "default_title": "Backnote"
  },
  "background": {
    "scripts": [
      "background.js",
      "edit-note.js"
    ]
  },
  "commands": {
    "backnote": {
      "suggested_key": {
        "default": "Ctrl+Shift+V"
      },
      "description": "Sending request to open a backnote tab"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "downloads"
  ]
}