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.」です。
拡張機能のスクリーンショット
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 |
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" } } |