Comment #71 on issue 140017 by
atwi...@chromium.org: Chome keeps getting
For people that are still seeing this issue on M28 stable, do you have
multiple profiles?
If you navigate to about:chrome, you can view your profile path. For the
canary version of Chrome, my profile path is
/Users/atwilson/Library/Application Support/Google/Chrome Canary/Default
If you go to the parent directory of your profile (in my case, under
Library/Application Support/Google/Chrome Canary/) and look at the Local
State file, you should see a section titled "background_mode".
By default, when you've installed a background app, this section should
look like this:
"background_mode": {
"chrome_created_login_item": true,
"migrated_login_item_pref": true
},
If you then uncheck the "Open at Login" checkbox, and disable/re-enable the
background app, we should detect that you've unchecked the box, and this
section should now look like:
"background_mode": {
"chrome_created_login_item": true,
"migrated_login_item_pref": true,
"user_removed_login_item": true
},
This "user_removed_login_item" line is the one that tells Chrome that
you've unchecked the box and it shouldn't try to add a new login item. If
you are seeing this issue on Chrome 28 or later, please take a look at this
Local State file and let me know what values you are seeing in
your "background_mode" section.