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은(는) https://bookmanager.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a popup for ISBN and UPC codes on pages, giving you access to Bookmanager's features for the product."입니다.
확장 프로그램 스크린샷
Bookmanager Stockchecker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } ] } |