Journal

Journal

bookmark, scrap and annotate on the web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Journal",
  "description": "bookmark, scrap and annotate on the web page.",
  "version": "1.5.9",
  "browser_action": {
    "default_icon": "img/icon128.png"
  },
  "commands": {
    "add_comment_hotkey": {
      "suggested_key": {
        "default": "Ctrl+J"
      },
      "description": "Add comment by current page url."
    }
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "page": "html/background.html"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://cdnjs.cloudflare.com; object-src 'self'",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "bookmarks",
    "contextMenus",
    "notifications"
  ],
  "web_accessible_resources": [
    "images/*",
    "css/*",
    "fonts/*",
    "js/*",
    "lib/*",
    "html/*",
    "test/*"
  ],
  "minimum_chrome_version": "50"
}