その本、図書館にあります。

その本、図書館にあります。

amazonで今、見ている本が近所の図書館にあるかどうかが分かります。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "3.0.3",
  "description": "__MSG_appDesc__",
  "default_locale": "ja",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "host_permissions": [
    "https://api.calil.jp/*"
  ],
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.co.jp/*",
        "https://api.sonohon.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.js",
        "js/contentscript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "images/icon16.png",
    "default_title": "図書館設定",
    "default_popup": "html/popup.html"
  }
}