LEX Ad Blocker

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

LEX Ad Blocker क्या है?

LEX Ad Blocker Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks banner and modal advertisements to switch to a different user experience when using Salesforce."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LEX Ad Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम LEX Ad Blocker LEX Ad Blocker
ID jiflmkdbgpekpdihndheehlhnkidcbbp
आधिकारिक URL https://chromewebstore.google.com/detail/lex-ad-blocker/jiflmkdbgpekpdihndheehlhnkidcbbp
विवरण Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.
फ़ाइल का आकार 15.55 KB
स्थापना संख्या 294
वर्तमान संस्करण 0.2
अंतिम अपडेट 2018-08-13
प्रकाशन तिथि 2018-08-13
रेटिंग 2.33/5 कुल 3 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.github.com/rogeramitchell/lex-ad-blocker
सहायता पृष्ठ URL https://www.github.com/rogeramitchell/lex-ad-blocker
समर्थित भाषाएँ 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"
    }
}