NotesAlong: Advanced Web & PDF Highligher

NotesAlong: Advanced Web & PDF Highligher

A fun and effective new tool to highlight, organize, and share information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NotesAlong: Advanced Web & PDF Highligher",
  "version": "1.3.0",
  "manifest_version": 2,
  "description": "A fun and effective new tool to highlight, organize, and share information.",
  "author": "https://notesalong.com",
  "browser_action": {
    "default_icon": {
      "16": "assets/images/logo16.png",
      "48": "assets/images/logo48.png",
      "128": "assets/images/logo128.png",
      "200": "assets/images/logo128.png"
    }
  },
  "icons": {
    "16": "assets/images/logo16.png",
    "48": "assets/images/logo48.png",
    "128": "assets/images/logo128.png"
  },
  "commands": {
    "load-assets": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Ctrl+Shift+1"
      },
      "description": "Initializes and loads highlights"
    },
    "create-highlight": {
      "suggested_key": {
        "default": "Ctrl+Shift+2",
        "mac": "Ctrl+Shift+2"
      },
      "description": "Creates a highlight"
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' 'sha256-Oxlk+WsHq8KBYW+rXNQek0H0bOxqKhv2/IDKp5q/1VA='",
  "background": {
    "scripts": [
      "apps/background/background_app.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "shared/web_components/*.*",
    "apps/content_script/content_script_app.js",
    "apps/content_script/main.css",
    "apps/pdf/*",
    "apps/pdf/web/viewer.html"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.notesalong.com/*",
      "*://lh3.googleusercontent.com/*"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webNavigation",
    "commands",
    "http://*/*notesalong*",
    "https://*/*notesalong*"
  ]
}