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開發的Chrome擴展程式,該擴展的主要功能是“Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.”。

擴展截圖

screenshot

下載LEX Ad Blocker擴展crx文件

下載LEX Ad Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}