ktab

ktab

A better way to bookmark.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ktab",
  "version": "1.2",
  "description": "A better way to bookmark.",
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "./icons/16.png",
    "32": "./icons/32.png",
    "48": "./icons/48.png",
    "64": "./icons/64.png",
    "128": "./icons/128.png"
  },
  "browser_action": {
    "default_popup": "index.html#popup=true"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "commands": {
    "ViewBookMarks": {
      "suggested_key": {
        "default": "Shift+Alt+Space"
      },
      "description": "View your bookmarks."
    }
  }
}