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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Bookmanager Stockchecker
قم بتنزيل ملفات الامتداد Bookmanager Stockchecker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" } ] } |