BM Extender

A chrome extension that adds custom functionality to the SFCC Business Manager.

Qu'est-ce que BM Extender ?

BM Extender est une extension Chrome développée par Mihai Vilcu, et sa fonction principale est "A chrome extension that adds custom functionality to the SFCC Business Manager.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension BM Extender

Téléchargez les fichiers d'extension BM Extender au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom BM Extender BM Extender
ID nanddpboghpecioaldijkimnmeblhmfi
URL Officiel https://chromewebstore.google.com/detail/bm-extender/nanddpboghpecioaldijkimnmeblhmfi
Description A chrome extension that adds custom functionality to the SFCC Business Manager.
Taille du Fichier 140 KB
Nombre d'Installations 1,106
Version Actuelle 2.3.0
Dernière Mise à Jour 2024-01-20
Date de Publication 2020-04-17
Évaluation 4.91/5 Total 11 Évaluations
Développeur Mihai Vilcu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mihai-vlc/bm-extender
URL de la Page d'Aide https://github.com/mihai-vlc/bm-extender/issues
Langues Prises en Charge 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:\/\/*\/*"
            ]
        }
    ]
}