Otio

Otio

Your personal librarian for the internet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Otio",
  "description": "Your personal librarian for the internet",
  "version": "0.7.0",
  "icons": {
    "16": "/assets/logo256.png",
    "48": "/assets/logo256.png",
    "128": "/assets/logo256.png"
  },
  "action": {},
  "permissions": [
    "webNavigation",
    "cookies",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "foreground.js"
      ]
    }
  ]
}