Bookmanager Stockchecker

Adds a popup for ISBN and UPC codes on pages, giving you access to Bookmanager's features for the product.

Bookmanager Stockcheckerคืออะไร?

Bookmanager Stockchecker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bookmanager.com และคุณลักษณะหลักของมันคือ "Adds a popup for ISBN and UPC codes on pages, giving you access to Bookmanager's features for the product."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmanager Stockchecker

ดาวน์โหลดไฟล์ส่วนขยาย Bookmanager Stockchecker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Stockchecker is a small Chrome browser extension that lets you see a small icon near a number that looks like an ISBN.  Clicking on the icon will then display a mini-window that shows what you have in stock at your WebStore with Bookmanager.  In addition to viewing your sales history and current onhand information, you have the option of adding the book to your WebStore's cart.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bookmanager Stockchecker Bookmanager Stockchecker
ID dlepnjlehdglcllkkhbdihcanplfjknj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bookmanager-stockchecker/dlepnjlehdglcllkkhbdihcanplfjknj
คำอธิบาย Adds a popup for ISBN and UPC codes on pages, giving you access to Bookmanager's features for the product.
ขนาดไฟล์ 86.32 KB
จำนวนการติดตั้ง 782
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2018-10-12
วันที่เผยแพร่ 2018-10-11
คะแนน 5.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา https://bookmanager.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmanager Stockchecker",
    "version": "1.1.5",
    "content_security_policy": "script-src 'self' https:\/\/bookmanager.com; object-src 'self'",
    "description": "Adds a popup for ISBN and UPC codes on pages, giving you access to Bookmanager's features for the product.",
    "background": {
        "scripts": [
            "data\/background.js"
        ]
    },
    "web_accessible_resources": [
        "data\/icon-16.png",
        "data\/style.css",
        "data\/dis-icon-16.png",
        "data\/dis-icon-32.png",
        "data\/dis-icon-64.png",
        "data\/dis-icon-128.png",
        "data\/midframe.js",
        "data\/frame.html"
    ],
    "icons": {
        "16": "data\/icon-16.png",
        "32": "data\/icon-32.png",
        "64": "data\/icon-64.png",
        "128": "data\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icon-16.png",
            "32": "data\/icon-32.png",
            "64": "data\/icon-64.png",
            "128": "data\/icon-128.png"
        },
        "default_title": "Bookmanager Stockchecker - Click to Disable"
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "data\/style.css"
            ],
            "js": [
                "data\/bookmanager.textsearch.js",
                "data\/bookmanager.ean.js",
                "data\/stockchecker.js",
                "data\/main.js"
            ],
            "run_at": "document_idle"
        }
    ]
}