BM Extender
A chrome extension that adds custom functionality to the SFCC Business Manager.
BM Extender란 무엇입니까?
BM Extender은(는) Mihai Vilcu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension that adds custom functionality to the SFCC Business Manager."입니다.
확장 프로그램 스크린샷
BM Extender 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Business Manager functionality - sidebar menu - search functionality in the sidebar - fill the export input with some default value - action buttons with position fixed - highlight the current row in a table - keep the session active - small layout fixes - update the page title with more useful information - dark mode (enabled from options menu) Popup functionality - Links to common places - Logs from today
확장 프로그램 기본 정보
이름 | BM Extender |
ID | nanddpboghpecioaldijkimnmeblhmfi |
공식 URL | https://chromewebstore.google.com/detail/bm-extender/nanddpboghpecioaldijkimnmeblhmfi |
설명 | A chrome extension that adds custom functionality to the SFCC Business Manager. |
파일 크기 | 140 KB |
설치 횟수 | 1,106 |
현재 버전 | 2.3.0 |
최근 업데이트 | 2024-01-20 |
출시 날짜 | 2020-04-17 |
평점 | 4.91/5 총 11 개의 평점 |
개발자 | Mihai Vilcu |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mihai-vlc/bm-extender |
도움말 페이지 URL | https://github.com/mihai-vlc/bm-extender/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BM Extender", "manifest_version": 3, "minimum_chrome_version": "100", "version": "2.3.0", "description": "A chrome extension that adds custom functionality to the SFCC Business Manager.", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": "images\/icon48.png", "default_title": "Log files", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*\/on\/demandware.servlet\/webdav\/*", "*:\/\/*\/on\/demandware.store\/Sites-Site\/*", "*:\/\/*.commercecloud.salesforce.com\/*", "*:\/\/*.demandware.com\/*", "*:\/\/*.demandware.net\/*" ], "js": [ "jquery.js", "dotjs.js" ] } ], "options_page": "options\/options.html", "permissions": [ "tabs", "activeTab", "storage", "scripting" ], "host_permissions": [ "*:\/\/*\/on\/demandware.servlet\/webdav\/*", "*:\/\/*\/on\/demandware.store\/Sites-Site\/*", "*:\/\/*.commercecloud.salesforce.com\/*", "*:\/\/*.demandware.com\/*", "*:\/\/*.demandware.net\/*" ], "web_accessible_resources": [ { "resources": [ "scripts\/*.js" ], "matches": [ "https:\/\/*\/*" ], "use_dynamic_url": true }, { "resources": [ "styles\/*.css" ], "matches": [ "https:\/\/*\/*" ] } ] } |