BM Extender
A chrome extension that adds custom functionality to the SFCC Business Manager.
BM Extender क्या है?
BM Extender Mihai Vilcu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that adds custom functionality to the SFCC Business Manager."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BM Extender एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*" ] } ] } |