Page Nav

HIDE

Grid

GRID_STYLE

Large-scale deployment of Adblock Plus for Google Chrome

Introduction Deployment of Adblock Plus for Chrome under Windows/OS X/Chrome OS environment

Image result for Large-scale deployment of Adblock Plus for Google Chrome

Introduction

Deployment of Adblock Plus for Chrome under Windows/OS X/Chrome OS environment

Steps (2 total)

1

Deployment with group policies

Chrome recommends the use of group policies for large scale deployments. Please refer to the official Chromium Projects documentation for group policy installation instructions (seehttps://www.chromium.org/administrators/policy-list-3#ExtensionInstallForcelist).
2

Suppressing the First-Run Page

The current Adblock Plus development build, 1.8.12.1419, and the upcoming release, 1.8.13, can be configured by extension policies to suppress the first-run page (issue 1488).
Note: The extension ID below (i.e., ldcecbkkoecffmfljeihcmifjjdoepkn) is specific to Adblock Plus development builds. The extension ID for stable releases is cfhdojbkjhnklbpkdaibdccddilifddb
On Windows instances that are joined to an Active Directory domain, the first-run page can be disabled with following registry file:
Windows Registry Editor Version 5.00
[HKLM\Software\Policies\Google\Chrome\3rdparty\extensions\ldcecbkkoecffmfljeihcmifjjdoepkn\policy]
"suppress_first_run_page" = dword:0000001
Note that for Chromium, the registry key differs:
Windows Registry Editor Version 5.00
[HKLM\Software\Policies\Chromium\3rdparty\extensions\ldcecbkkoecffmfljeihcmifjjdoepkn\policy]
"suppress_first_run_page" = dword:0000001
On Linux, the first-run page can be disabled with a JSON file in:
/etc/opt/chrome/policies/managed/ or /etc/chromium/policies/managed/
{
"3rdparty": {
"extensions": {
"ldcecbkkoecffmfljeihcmifjjdoepkn": {
"suppress_first_run_page": true
}
}
}
}
For more information on configuring Chrome extensions by policy and instructions for OS X and Chrome OS, please refer to the official Chromium Projects documentation (see https://www.chromium.org/administrators/configuring-policy-for-extensions).


No comments