BM Extender

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

O que é BM Extender?

BM Extender é uma extensão do Chrome desenvolvida por Mihai Vilcu, e sua principal característica é "A chrome extension that adds custom functionality to the SFCC Business Manager.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão BM Extender

Baixe arquivos de extensão BM Extender no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome BM Extender BM Extender
ID nanddpboghpecioaldijkimnmeblhmfi
URL Oficial https://chromewebstore.google.com/detail/bm-extender/nanddpboghpecioaldijkimnmeblhmfi
Descrição A chrome extension that adds custom functionality to the SFCC Business Manager.
Tamanho do Arquivo 140 KB
Contagem de Instalações 1,106
Versão Atual 2.3.0
Última Atualização 2024-01-20
Data de Publicação 2020-04-17
Classificação 4.91/5 Total de 11 Avaliações
Desenvolvedor Mihai Vilcu
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mihai-vlc/bm-extender
URL da Página de Ajuda https://github.com/mihai-vlc/bm-extender/issues
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}