vulog - logger, bookmarker & highlighter

vulog - logger, bookmarker & highlighter

An app for logging, bookmarking and highlighting the text on the pages you visit on chrome/brave browsers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "vulog - logger, bookmarker & highlighter",
  "short_name": "vulog",
  "description": "An app for logging, bookmarking and highlighting the text on the pages you visit on chrome/brave browsers.",
  "version": "0.0.4056",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Logging and bookmarking web page views",
    "default_icon": "vulog logo v1.png",
    "default_popup": "static/popUp.html"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "cookies",
    "<all_urls>"
  ],
  "optional_permissions": [
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/pageData.js",
        "scripts/parsePage.js",
        "scripts/highlight.js",
        "scripts/overlay.js",
        "scripts/redirect.js",
        "scripts/load_highlights.js"
      ],
      "css": [
        "static/overlay.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "scripts/manifest.js",
      "freezr/freezr_app_init.js",
      "freezr/freezr_core.js",
      "freezr/jlos-frozen.js",
      "scripts/highlight.js",
      "scripts/pageData.js",
      "scripts/background.js"
    ]
  },
  "icons": {
    "16": "static/vulog_logo_16.png",
    "48": "static/vulog_logo_48.png",
    "128": "static/vulog_logo_128.png"
  },
  "web_accessible_resources": [
    "images/*.png"
  ]
}