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文件
下載BM Extender擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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:\/\/*\/*" ] } ] } |