LEX Ad Blocker

Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.

O que é LEX Ad Blocker?

LEX Ad Blocker é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão LEX Ad Blocker

Baixe arquivos de extensão LEX Ad Blocker 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

                        Are you distracted when modal advertisements pop up while trying to use Salesforce Classic? Do you want to hide these until you're ready to make the switch to the new user experience? If so, install this Chrome extension to block modal advertisements that appear on the home screen, including links to "Switch to Lightning Experience", which can already be seen under the "Your Name" menu. 

Changelog

**Version 0.2**
- Blocks a pop up ad that appears when viewing reports in Classic

If you see additional modals pop up, please let us know and we'll update the extension to include blocking for these as well; log an issue to https://www.github.com/rogeramitchell/lex-ad-blocker.                    

Informações Básicas da Extensão

Nome LEX Ad Blocker LEX Ad Blocker
ID jiflmkdbgpekpdihndheehlhnkidcbbp
URL Oficial https://chromewebstore.google.com/detail/lex-ad-blocker/jiflmkdbgpekpdihndheehlhnkidcbbp
Descrição Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.
Tamanho do Arquivo 15.55 KB
Contagem de Instalações 294
Versão Atual 0.2
Última Atualização 2018-08-13
Data de Publicação 2018-08-13
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Site da Extensão https://www.github.com/rogeramitchell/lex-ad-blocker
URL da Página de Ajuda https://www.github.com/rogeramitchell/lex-ad-blocker
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LEX Ad Blocker",
    "version": "0.2",
    "description": "Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.",
    "manifest_version": 2,
    "browser_action": {
        "persistent": true
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.chrome.com\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}