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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}