LEX Ad Blocker

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

Co je LEX Ad Blocker?

LEX Ad Blocker je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření LEX Ad Blocker

Stáhněte si soubory rozšíření LEX Ad Blocker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název LEX Ad Blocker LEX Ad Blocker
ID jiflmkdbgpekpdihndheehlhnkidcbbp
Oficiální URL https://chromewebstore.google.com/detail/lex-ad-blocker/jiflmkdbgpekpdihndheehlhnkidcbbp
Popis Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.
Velikost souboru 15.55 KB
Počet instalací 294
Aktuální Verze 0.2
Poslední Aktualizace 2018-08-13
Datum Vydání 2018-08-13
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://www.github.com/rogeramitchell/lex-ad-blocker
URL Stránky Nápovědy https://www.github.com/rogeramitchell/lex-ad-blocker
Podporované Jazyky 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"
    }
}