TitlePage Express

TitlePage Express

The TitlePage Express browser extension finds ISBNs while you browse the internet, providing quick access to TitlePage metadata.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TitlePage Express",
  "description": "The TitlePage Express browser extension finds ISBNs while you browse the internet, providing quick access to TitlePage metadata.",
  "version": "1.0.0",
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "./icon.png",
    "32": "./icon.png",
    "64": "./icon.png",
    "128": "./icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/content.css",
        "logo.png",
        "icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ]
}