Firefox 22 Silent Add-ons/Plugins/Extensions Installation

We're a Windows 7 x86 shop and we're finally upgrading from Firefox 3.6. I just need a little help finalizing the customizations for our Firefox 22 install.
Our requests don't differ greatly from others (no automatic updates, no plugin checks, set default home page, no Firefox sync etc.) and all that seems to be working so far. I ran the install on a machine that did not have a previous version of Firefox and found it largely behaving the way I expected it to.
However two things stand out:
On initial launch I'm seeing a 'checking compatibility of addons' screen. It doesn't ask me to do anything and disappears after a few seconds, but this worries me that it *might* complain about a plugin a user installed when we go through the upgrade process.
- Can this 'check' be avoided?
- Is it really doing anything? (eg: checking for blacklisted addons/extensions? etc)
- What's the worst that could happen here?
In the registry (HKLM\Software\Mozilla\Firefox\Extensions) I have two entries created by 2 other applications on the workstation each of which pointing to their respective extension/addon/plugin directory (e.g.: C:\Program Files\Application\some_directory). When properly installed, one is listed as an Extension, the other a Plugin. On the first launch after installation, I see two 'Install Add-on' tabs prompting me to approve each the installation. Seeing as these extensions are allowed/trusted and required, I want Firefox to accept them without prompting the user. Now, I'm aware of two key elements that largely govern this (and their subtle differences) but I can't seem to get this to work right:
extensions.autoDisableScopes
extensions.enabledScopes
With the former set to 0 and the latter 15 I relaunch FF and while I don't get the tabs, when I go to test them, it doesn't work. Furthermore, the Plugin is listed under Extensions which probably shoud not be.
- What am I doing wrong?
- How can I allow/trust/whitelist or otherwise automatically approve the installation of either specific add-ons, or add-ons within a specific location?
Please, correct me if I'm doing something wrong, or if there's a better way (e.g.: GPO's) to apply global settings for all users. I'm hoping to avoid a solution that requires installing a third-party plug-in
Any advice is greatly appreciated.
Install/upgrade process consists these key files:
Firefox Setup 22.0.exe - The installer
install.cmd - Script that runs the installer and does other things:
runs installer with the following switches: /INI=custom.ini
creates "%ProgramFiles%\Mozilla Firefox\browser\defaults\profile\chrome" (if missing)
copies userChrome.css into the above directory
creates "%ProgramFiles%\Mozilla Firefox\browser\defaults\preferences" (if missing)
copies local-settings.js into the above directory
copies Mozilla.cfg into "%ProgramFiles%\Mozilla Firefox\"
copies override.ini into "%ProgramFiles%\Mozilla Firefox\browser\"
custom.ini :
MaintenanceService=false
userChrome.css :
// Disable Firefox Sync
#sync-setup, #sync-status-button, #BrowserPreferences radio[label="Sync"] {display:none!important;}
#sync-setup-appmenu,#sync-syncnowitem-appmenu, #sync-setup, #sync-status-button, #BrowserPreferences radio[label="Sync"] {display:none!important;}
menu[label="Tools"] menuitem[label="Sync Now"], #sync-button, #sync-setup-appmenu, #sync-syncnowitem-appmenu, #sync-setup, #sync-status-button, #BrowserPreferences radio[label="Sync"] {display:none!important;}
local-settings.js :
pref("general.config.obscure_value", 0);
pref("general.config.filename", "mozilla.cfg");
Override.ini :
[XRE]
EnableProfileMigrator=False
EnableExtensionManager=True
[Crash Reporter]
Enabled=False
Mozilla.cfg :
// This preference allows to suppress all UI update prompting.
defaultPref("app.update.silent", true);
// This preference disables the background service that installs updates
defaultPref("app.update.service.enabled", false);
// This preference indicates that the rights notification has already been shown.
defaultPref("browser.rights.3.shown", true);
defaultPref("browser.rights.override", true);
// Disable automatic check for updates to search plugins
defaultPref("browser.search.update", false);
// Do not perform system default browser check on startup
defaultPref("browser.shell.checkDefaultBrowser", false);
// Sets URL of homepage or pope (|) separated list of URL's to open in tabs
defaultPref("browser.startup.homepage", "http://our-intranet/");
// Was suggested to use this instead of the above - don't understand why
//defaultPref("browser.startup.homepage", "data:text/plain,browser.startup.homepage=http://our-intranet/");
// The last browser version (milestone) this profile was loaded with. If it differs from the current version, pref is changed to current version.
defaultPref("browser.startup.homepage_override.mstone", "ignore");
// Disable check extension for browser compatibility on upgrade/install.
defaultPref("extensions.checkCompatibility", false);
// Disable checks that extensions provide secure updates.
defaultPref("extensions.checkUpdateSecurity", false);
// The last version of the browser to successfully load extensions. Used to determine whether or not to disable extensions due to possible incompatibilities.
defaultPref("extensions.lastAppVersion", "100.0.0");
// Not sure if this still applies today
defaultPref("extensions.lastPlatformVersion", "100.0.0");
// An Attempt at Disabling Firefox sync
defaultPref("services.sync.autoconnect", false);
defaultPref("services.sync.clients.lastSync", "0");
defaultPref("services.sync.clients.lastSyncLocal", "0");
defaultPref("services.sync.engine.addons", false);
defaultPref("services.sync.engine.apps", false);
defaultPref("services.sync.engine.bookmarks", false);
defaultPref("services.sync.engine.history", false);
defaultPref("services.sync.engine.passwords", false);
defaultPref("services.sync.engine.prefs", false);
defaultPref("services.sync.engine.prefs.modified", false);
defaultPref("services.sync.engine.tabs", false);
defaultPref("services.sync.globalScore", 0);
defaultPref("services.sync.migrated", true);
defaultPref("services.sync.nextSync", 0);
defaultPref("services.sync.tabs.lastSync", "0");
defaultPref("services.sync.tabs.lastSyncLocal", "0");
// Disabled Add-on manager pop-up window post addon/extension installation
defaultPref("extensions.newAddons", false);
// Disable automatic download and installation of available updates
defaultPref("extensions.update.autoUpdate", false);
// Diable automatic checking of updates at the specified interval
defaultPref("extensions.update.autoUpdateEnabled", false);
// Disable checking for extension updates
defaultPref("extensions.update.enabled", false);
// Determines how often to check the update URL for updates.
defaultPref("extensions.update.interval", 1273520281);
// Disable addon control wizard
defaultPref("extensions.shownSelectionUI", true);
// A comma-and-space-delimited list of URIs with which to automatically authenticate via NTLM (Windows domain logon).
defaultPref("network.automatic-ntlm-auth.trusted-uris", "a,bunch,of,servers,urls,and,unc,paths");
// Indicates whether some cookie preferences — previously stored in deprecated preferences — have been migrated to current preferences.
defaultPref("network.cookie.prefsMigrated", true);
// A comma-and-space-delimited list of sites that are permitted to engage in SPNEGO authentication with the browser.
defaultPref("network.negotiate-auth.trusted-uris", "a,bunch,of,servers,urls,and,unc,paths");
// Not sure if this still applies today
defaultPref("privacy.sanitize.migrateFx3Prefs", true);
// Disable telemetry (usage statistics) to Mozilla HQ
defaultPref("toolkit.telemetry.prompted", 2);
defaultPref("toolkit.telemetry.rejected", true);
defaultPref("toolkit.telemetry.enabled", false);
// A comma-separated list of sites to automatically add to the extensions whitelist.
defaultPref("xpinstall.whitelist.add", "");
// Not sure what these are but are baked into installation
defaultPref("xpinstall.whitelist.add.180", "");
defaultPref("xpinstall.whitelist.add.36", "");
// Allow access to specific network locations
defaultPref("capability.policy.policynames", "policy1, policy2, ..., policyX");
defaultPref("capability.policy.policy1.checkloaduri.enabled", "allAccess");
defaultPref("capability.policy.policy1.sites","http://site1 http://site1/site http://site2");
defaultPref("capability.policy.policy2.checkloaduri.enabled", "allAccess");
defaultPref("capability.policy.policy2.sites","\\unc\path");
defaultPref("capability.policy.policyX.checkloaduri.enabled", "allAccess");
defaultPref("capability.policy.policyX.sites","whatever");
// Disables built in PDF viewer
defaultPref("pdfjs.disabled",true);
// Disables Health Report Uploads
defaultPref("datareporting.healthreport.uploadEnabled",false);
// Disables Health Reporting Completely
defaultPref("datareporting.healthreport.service.enabled",false);
// Disabled Plugin Check
defaultPref("plugin.scan.plid.all",false);
defaultPref("plugins.update.url","");

try the 15 - 15 option, see in the above link you gave us :
http://mike.kaply.com/2012/02/21/understanding-add-on-scopes/
the : Add-ons are only disabled by default '''if they were not explicitly installed by the user'''. '''So if an external application places an add-on into the user’s profile directory, it is disabled by default'''.
(it is in extensions.autoDisableScopes area )

Similar Messages

  • Add-ons (plugin, extension) workflow and architecture inside the browser

    would like to help me explain the add-ons (plugin, extension) workflow, add-ons architecture inside the browser with pictures and the details please so i can understand how does it work easily.. thank you so much for your concern with my question... :)

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini, extensions.sqlite) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the "Find Updates" button (in Firefox 4: right-click the extension -> "Find Updates") to do a compatibility check.
    See also http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Why have many of my add-ons and extensions been disabled after switching to firefox 6

    Many of my add-ons and extensions have been disabled after switching to Firefox 6.
    None of the Java extensions can be used;
    my Microsoft frame is disabled;
    my media player is gone;
    and my google toolbar with all of my important bookmarks is missing.
    How can Firefox 6 be considered an "upgrade"?
    How can I '''retrieve Firefox 4 or 5'?''--there's no point in using a browser that limits so many necessary add-on sites!

    Hi, mhaoo7--
    Tried your plugins updating suggestion; no go.
    Then tried updating to FF7.
    This time the Yahoo! toolbar was no longer compatible with FF.
    Scoured sites discussing problems with versions 6 & 7
    and decided to retire to version 3.6.19.
    Now both Google and Yahoo! toolbars are re-installed and
    working....Only deficit may be that FF no longer supports or
    soon will not support this version.
    I have stashed all of my necessary bookmarks on Google's toolbar;
    I like its drop-down menu as it doesn't change the page/window I'm
    in the process of using;
    I don't want to see that menu listed separately in a new window (too chaotic).
    Same for the Google dictionary and Thesaurus, which are straightforward
    and easy to use, again requiring nothing more complicated than a drop-down menu
    to search for words and concepts.
    --I checked Firefox 6 and 7's Dictionary/Thesaurus options but unfortunately
    found none.
    So if Firefox continues to upgrade with diminished returns, I'll likely have to go
    to Google Chrome.
    Would rather not do that.
    Maybe I can keep FF 3.6.19 without incurring nasty repercussions.
    Hope so.
    Have enjoyed being with Firefox for a few years.
    Thank you for your attention.
    marlem388

  • In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page (I turn Shockwave Flash on only to see videos - having it off prevents screen freezing - and so I want it stay at the top of the list)?

    In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page? I turn Shockwave Flash on only when I want to watch a video and then turn it off to prevent screen freezing, and so I want it to PUT it and KEEP it at the top of the list.

    Hit Ctrl+0 (That's a zero, by the way). I'm not sure if it will work, but hey, that's the first thing I would try.

  • I have disabled all add ons and extensions to stop adverts but everytime I log into my pc the adverts appear again? not happy :(

    since I updated firefox I have been HOUNDED by adverts. I read an article that suggested disabling all add ons and extensions but they seem to enable themselves again after I open my pc! I am very careful and always tick and untick boxes when I am downloading updating anything to ensure this doesn't happen therefore these add ons seem to have been automatically added by firefox during the update. not cool! the amount of adverts and the fact I have never suffered from such a pop up invasion in my life is becoming EXTREMELY annoying how do i permanently stop these adverts?

    Do a malware check with some malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Slow scrolling with all add-ons and extensions disabled, but OK is safe mode

    I have a page for work, with a lot of links, that scrolls very slowly, with a choppy action. It is the same with all add-ons and extensions disabled. But when restarted in safe mode, the scrolling is OK.
    What else does the safe mode block? Or what could be the problem.

    In Firefox 4 and later Safe mode disables extensions and disables hardware acceleration.
    *http://kb.mozillazine.org/Safe_mode
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • Add-ons or extensions crash my machine and come up as malware

    Was looking for plug-ins and extensions, and came across Top Arcade Hits add-on, and searchhelper extension by conduit. Since installing these add-ons, and extensions, my machine has been crashing on memory, my homepage was hijacked by the search helper (Search Protect by Conduit)...I immediately disabled the plug-in and extension, and restarted Mozilla, with no change.
    I also found Search Protect had installed into my startup folder, so uninstalled that via control panel, also with no change.
    After 2 days of fighting with this, I searched for Search Protect by Conduit, and found it is known malware, bho, pup, and a hijacker to boot, which also mines data and sends to 3rd parties, as does Top Hat, which is listed as Adware.Gamevance
    CNET recommended I use Malwarebytes Anti-Malware to scan and/or remove the infestation, it found 86 entries throughout the memory, registry, program files, etc., 43 of which were actual infestations
    Thankfully, after 1 pass, it has removed it from my system. I would be happy to send you the log if it would help, and suggest you remove these items from your add-on list...
    The only issue I currently have is that the add-on and extension are still in my Firefox, disabled, but with no way to remove them.

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Do I have to use add-ons or can I use Firefox savely without add-ons?

    Can I use Firefox savely without add-ons? If not, how will I know which add-ons are needed? How save are the add-ons? What if an add-on contains a bug or a mistake? Will I get updates automatically?

    Add-ons are optional. I find some of them incredibly useful, but you probably will end up with different ones that suit your needs or interests.
    If the add-ons are installed from the Mozilla Add-ons site, then they are checked for updates on a regular basis.
    Some add-ons will have bugs or cause conflicts with other add-ons or web sites. You can see the evidence of that on this forum, especially after major upgrades... All that flexibility makes Firefox harder to support, but everyone wants choice. :-)
    I should add that much of the web does not work correctly with the Adobe Flash plugin, so maybe that one isn't so optional.

  • I upgraded to FF 5.0 and now do not have ADD ONS or EXTENSIONS showing up under TOOLS.

    I upgraded to FF 5.0 and now find that I am missing ADD ONS and EXTENSIONS under TOOLS. I have looked everywhere - help??
    Windows 7 Professional
    Xmara

    Hi :) but the thing is... I *do* have extensions and add ons that work fine but I do not have the options under TOOLS to to access them as extensions and add ons do not appear when I click on tools. The two items are not listed under tools when I click on it on the top menu. So the ability to disable addons is not available. My FF is broken :(

  • Save my Firefox Plug-Ins & Add-Ons for future use

    I want to save my installed Firefox Plug-Ins & Add-Ons so I can install them directly on my second PC. I mean directly, so I don't have to search for them 1 by 1 .
    Is there some sort of Export for these?
    Thx

    https://addons.mozilla.org/en-US/firefox/addon/febe/

  • Ran the 'Refresh' mode, now nothing is compatible with my version of firefox? No Add-ons, Extensions or Themes. Please help me get back to what I had.

    I opened Firefox, and I had a bar along the bottom saying it needed to be optimized, so I could refresh Firefox. I understood that it would take it back to its original state, but I thought that I could add things that I wanted. But when it was "Refreshed", I could not add anything. Themes are "Not compatible with my version of Firefox". Add-ons do download, but I cannot install them. It takes me to a page that is too confusing for a non-tech person like me (a windows page that wants me to find the program that will install it). So I gave up (I also don't have alot of time to fix this). I checked for "updates" hoping that I could update the version and then add a theme, add-ons, extensions, etc. But it is up-to-date. Thank you for your help.

    Normally, when you try to install an extension from the Mozilla Add-ons site, you get a progress bar that drops down temporarily from the address bar, and then a pop-up dialog asking you to approve the installation. Do you get either of those or just nothing happens?
    As an example: https://addons.mozilla.org/firefox/addon/adblock-plus/
    Could you test with the avast! extension disabled in case it is blocking these normal actions? You can do that on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then find avast! on the right side and click Disable.
    Often a link will appear above a disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Any difference? Are other sites still a problem?

  • Does firefox/mozilla test add ons, plug ins and extensions

    I am really new to all of add ons, plug ins, etc. I am wondering if these get tested or do you just let anyone submit add ons, plug ins, etc. without knowing they could contain a virus or bug. I don't want to download some add on only to find it just sent me a virus. How do we know they're safe?

    Sorry that you had a bad experience with a Firefox add-on, but it's not clear to me whether you downloaded DoNotTrackMe from here - https://addons.mozilla.org/en-US/firefox/addon/donottrackplus/
    or whether you got it from the '''abine''' website - http://www.abine.com/donottrackme.html
    That makes a '''big''' difference because the version of that add-on which is hosted at AMO is not the same as '''adbine''' is providing at their website. I saved both versions to disk and opened the XPI package of both to inspect the install.rdf file; while the overall XPI file size appears to be the same there are major differences in the install.rdf file - the abine version has its own Update URL listed, where the version at AMO would be updated thru AMO as almost all add-ons hosted at AMO are updated.
    Minor difference? Or one that allows '''abine''' to do what it wants after installation?

  • Is there any setting in Firefox 8 and above to enable third party add-ons and extensions by default. This is required for our automation. Any quick help appreciated.

    Basically, my requirement is to get all the third party extensions/add-ons enabled by default. Though Firefox8 and above have disabled the third party extensions/add-ons, is there any way to customize the settings so that all third party extensions and add-ons get enabled by default in Firefox8 and above.

    I had that problem once, the way I fixed the two addons I had problems with was to find and manually download the xpi file from the author's page. Once you have that you can edit the install.rtf file that is inside it.
    Here's a guide on how that works.
    http://kb.mozillazine.org/Editing_an_add-on_to_change_its_compatibility

  • I keep getting this message whenever I click on the "Find Updates" tab in Tools/Add-ons: "Plugin Finding Service Error. We've encountered an error. Please try your request again later. Retry."

    I have updated Firefox to 3.6.16, and Flash Player to the new 10.2.153.1, and all the other "extensions" and "add-ons" work just fine. I can't figure out what the problem is except to say that, I have not been able to "update" the "plugins" in Firefox.
    Every day I have been trying to see if there is any change, but each time the message box reads the same: "Plugin Finding Service Error...." etc, as stated in the "Question" above.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    You can check the permissions for all sites on the about:permissions page, via the location bar.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • After updating to Firefox 6, Tools/Add-ons hangs "Loading..."

    After updating, Firefox informed me that Flash Player was out of date. I updated that and restarted Firefox with no issues.
    However, every time I try to open the Add-ons manager it just hangs with a small "Loading..." bubble.

    Apparently clicking on any (Extensions, Plugins, Appearance) just the one time solves the problem. No further problem after exiting and restarting Firefox 6 for me. I have reported the issue.

Maybe you are looking for