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

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

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

その本、図書館にあります。 is a Chrome extension developed by https://sonohon.com, and its main feature is "amazonで今、見ている本が近所の図書館にあるかどうかが分かります。".

Extension Screenshots

screenshot
screenshot

Download その本、図書館にあります。 Extension CRX File

Download その本、図書館にあります。 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        amazonで見ている本が近所の図書館にあるか調べます。
もしかすると、その本を買う必要がないかもしれません。

amazonのページ内に検索結果を表示するので、いつも通りamazonを利用するだけで図書館にその本があるかシームレスに分かります。

図書館では無料で本を読むことができますし、新しい本との出会いもあります。
久々に図書館に足を運んでみませんか?

-最近のお知らせ
2022/08/25
不具合を修正しました。(ver.2.3.4)

- 注意
このエクステンションは図書館蔵書検索サイト カーリル (http://calil.jp/) のAPIを利用しています。APIの仕様上で1000リクエスト/時という制限があるため、利用時間帯によっては検索が実行されない時があります。                    

Extension Basic Information

Name その本、図書館にあります。 その本、図書館にあります。
ID ldidobiipljjgfaglokcehmiljadanle
Official URL https://chromewebstore.google.com/detail/%E3%81%9D%E3%81%AE%E6%9C%AC%E3%80%81%E5%9B%B3%E6%9B%B8%E9%A4%A8%E3%81%AB%E3%81%82%E3%82%8A%E3%81%BE%E3%81%99%E3%80%82/ldidobiipljjgfaglokcehmiljadanle
Description amazonで今、見ている本が近所の図書館にあるかどうかが分かります。
File Size 63 KB
Installation Count 64,448
Current Version 2.3.4
Last Updated 2022-08-25
Publish Date 2020-06-11
Rating 4.50/5 Total 155 Ratings
Developer https://sonohon.com
Email [email protected]
Payment Type free
Extension Website https://sonohon.com
Help Page URL https://sonohon.com/howto/
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "2.3.4",
    "description": "__MSG_appDesc__",
    "default_locale": "ja",
    "options_page": "options.html",
    "permissions": [
        "https:\/\/api.calil.jp\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon16.png",
        "default_title": "\u56f3\u66f8\u9928\u8a2d\u5b9a",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.co.jp\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/ajax-loader.gif",
        "images\/logo.jpg"
    ]
}