Examine source code of LibraryLookup

Inspect and view changes in LibraryLookup source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Blair Conrad",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lookup.js"
      ]
    }
  ],
  "description": "Use the LibraryLookup web app to look for books in local libraries.",
  "icons": {
    "16": "searching_eye_left_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 2,
  "name": "LibraryLookup",
  "options_page": "options.html",
  "page_action": {
    "default_icon": {
      "19": "searching_eye_left_19.png"
    },
    "default_title": "Library Lookup"
  },
  "permissions": [
    "http://librarylookup-hrd.appspot.com/",
    "http://localhost/"
  ],
  "version": "1.0.2022.302"
}