How do I delete ALL Chrome/Google Account stored website passwords at once?Password protect google chromeHow...

Hot air balloons as primitive bombers

How can a new country break out from a developed country without war?

Why is indicated airspeed rather than ground speed used during the takeoff roll?

Justification failure in beamer enumerate list

Would mining huge amounts of resources on the Moon change its orbit?

Logic with "co-relations" - sources?

How to read string as hex number in bash?

How can an organ that provides biological immortality be unable to regenerate?

Why is "la Gestapo" feminine?

Does fire aspect on a sword, destroy mob drops?

How to test the sharpness of a knife?

Would this string work as string?

Determine voltage drop over 10G resistors with cheap multimeter

UK Tourist Visa- Enquiry

How to find the largest number(s) in a list of elements, possibly non-unique?

When should a starting writer get his own webpage?

Print last inputted byte

Is "inadequate referencing" a euphemism for plagiarism?

Is there any common country to visit for uk and schengen visa?

pipe commands inside find -exec?

Why is this tree refusing to shed its dead leaves?

Exit shell with shortcut (not typing exit) that closes session properly

Did Nintendo change its mind about 68000 SNES?

Knife as defense against stray dogs



How do I delete ALL Chrome/Google Account stored website passwords at once?


Password protect google chromeHow can I remove all bookmarks from Google Chrome?Chrome: Can not change/delete/manage password/username on Google DashboardCan Google Employees See My Passwords Saved in Google Chrome?Where does Google Smart Lock have all my passwords from?Long delay to display passwords stored by GoogleI lost all of my saved passwords in Google/ChromeHow do I restore Chrome/Google account stored website passwordsHow to re-save passwords in Google Chrome?How can I change the default google account in google chrome?How do I delete many (but not all) Chrome/Google Account stored website passwords at once?













47















I have hundreds of them, it takes .6 seconds to delete one in the browser and 3.7 seconds to delete one in the Google Account management page.



There has to be a way to remove all of them at once... right?










share|improve this question





























    47















    I have hundreds of them, it takes .6 seconds to delete one in the browser and 3.7 seconds to delete one in the Google Account management page.



    There has to be a way to remove all of them at once... right?










    share|improve this question



























      47












      47








      47


      5






      I have hundreds of them, it takes .6 seconds to delete one in the browser and 3.7 seconds to delete one in the Google Account management page.



      There has to be a way to remove all of them at once... right?










      share|improve this question
















      I have hundreds of them, it takes .6 seconds to delete one in the browser and 3.7 seconds to delete one in the Google Account management page.



      There has to be a way to remove all of them at once... right?







      google-chrome passwords google-accounts






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 30 '16 at 3:32







      Banderi

















      asked Jul 30 '16 at 3:24









      BanderiBanderi

      1,1351612




      1,1351612






















          6 Answers
          6






          active

          oldest

          votes


















          78














          Found it. Clearing all the saved passwords in Chrome from Clear browsing data... also deletes the synced passwords in the Google Account. The setting can be revealed by clicking on the Advanced Tab.






          share|improve this answer





















          • 4





            I did just that (since "the beginning of time'). STILL they were all on 'passwords.google.com'. You have to go there, too and choose Reset Sync. — Better keep checking a day or two later, that truly all your local chrome sync settings don't re-upp...

            – Frank Nocke
            Nov 6 '16 at 7:07






          • 2





            It seems removing them separately from passwords.google.com is no longer needed. I just cleared all the passwords in Chrome, and they disappeared also from passwords.google.com immediately.

            – Samuli Kärkkäinen
            Jun 4 '17 at 13:05






          • 2





            This does not delete the passwords stored on your Google account. When you sign in again to another device, they will re-sync. You have to manually delete each one in chrome://settings/passwords

            – jmcdonnell40
            Mar 6 '18 at 9:41



















          19














          The fastest way to clear all Chrome passwords is with this shortcut:
          Ctrl+Shift+Delete



          That'll open the "Clear browsing data" window. Click the checkbox for "Passwords". By default, it will clear passwords since "The beginning of time". Choose how long ago to delete passwords for:



          [Choose how long ago to delete passwords for



          It can take a long time to delete the passwords and other cached items (it took 20 minutes for my Chrome to clear 1200 passwords and 350MB cached pages/images).



          Click the blue button "Clear Browsing Data" and then wait:



          [Click Clear Browsing Data, then wait






          share|improve this answer


























          • This works, and clears passwords.google.com

            – Richard Frank
            Jul 15 '18 at 10:20



















          3














          Based on the answer by @bill-mcgonigle I assume it would also be possible to just use the Chrome Console



          function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
          for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
          if (typeof button != undefined) {
          button.click();
          sleep(3100);
          }
          }


          This worked for me, after the first time you run it, Google will ask for your password again. After that my 200+ passwords were deleted without any issue.



          Please note there's a warning in the console to understand the risk of running anything there. Be advised, read the above carefully to understand what you run.



          Clarification:



          // function to wait for 3 seconds before clicking the next delete button
          function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
          // start a loop iteration of all buttons inside the password grid
          // please note there are two grids on the page
          for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
          // in my debugging there was one undefined button
          if (typeof button != undefined) {
          // click that exact button element
          button.click();
          // wait for 3.1 seconds
          sleep(3100);
          }
          }





          share|improve this answer
























          • Is this still working ? if I go to passwords.google.com what I get is a list of accounts. To delete a password I have to manually click on an item of the list then it redirect me to a new page where I can finally delete it. It seems script you gave expect you can delete them all by simply clicking on a single button.

            – tigrou
            Jan 17 at 10:43





















          2














          I've run into this scenario where I only wanted to delete a large number of specific passwords. Finding no suitable alternative, I created a macro with Keyboard Maestro that deletes 10 at a time:



          chrome remove bulk passwords.kmmacros



          The file can be viewed for security purposes on Google Drive or in a text editor (the .kmmacros files are XML formatted) and can easily be modified to delete hundreds at a time.



          All it does is clicks at the current mouse location, clicks 40 pixels below, and returns the cursor to the original location, repeating 9 more times.






          share|improve this answer































            0














            For X11 systems, you can load passwords.google.com and on the saved passwords page put the mouse over the top trash-can icon and from a terminal do:



            watch -n 3 xdotool click 1



            and keep the mouse over the trash can icon until it's done - the next undeleted password will move up after each previous one has been deleted.



            Now, Google seems to sign you out at 5 minutes sharp for each p.g.c session, so this method can only do a hundred at a time (my goodness, 20 years of saved passwords...) but it's less maddening than clicking each one individually. Google does appear to impose a 3-second delay between each delete event. I tried fiddling with random delays and mouse wiggles, but those don't affect the 5-minute timeout.



            This method also works for the 'never save passwords for ...' section, but it will error out if any of those are of the chrome-extension:// protocol type, in which case you will need to move the cursor down one manually.



            I did do the Chrome-side tip given above to delete all passwords, but as soon as I turned on an old device it uploaded them all again. :angry react:



            That Google makes this so darn hard to do is probably reason enough to think that it's a good idea.






            share|improve this answer































              0














              I'm having a bizarre do-loop problem that's similar to this, would really welcome bigger brains to help!



              So due to a TSA snafu, I don't have my laptop anymore. I'm concerned about Chrome sync'ed passwords (as Chrome doesn't ask for 2-step verification to show passwords, just the computer password, and I'm assuming worst-case-scenario someone brute-forces my Mac computer password.)



              I found the following instructions online and followed them:
              - logged out of sessions remotely through "details" under Gmail
              - delete all the passwords on Chrome primary instance
              - then unsync under settings (uncheck each sync parameter for apps, history, etc.)
              - then reset sync to clear the Google server
              - set a new sync password



              I did all of this--and to doublecheck, I went to my secondary PC with Chrome, which was indeed logged out, but had the old passwords (I'm guessing as a local copy.) As soon as I logged back in, rather than clear out all the passwords, sync repopulated my Primary computer with the old passwords. So my understanding now is, as long as there's an instance of Chrome with old passwords on it, as soon as I resync, it'll autopopulate.



              So the question is, is there no way to actually delete and keep cleared all the passwords Google Chrome has stored for me, across any sync'ed Chrome instance, such that that's the official record. Or am I going to have to go to each computer I own with Chrome and manually delete all saved passwords?



              It seems insane that any old instance, rather than take instruction from the newest Chrome instance, can overwrite and repopulate passwords.






              share|improve this answer








              New contributor




              SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.




















                Your Answer








                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "3"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1106689%2fhow-do-i-delete-all-chrome-google-account-stored-website-passwords-at-once%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                6 Answers
                6






                active

                oldest

                votes








                6 Answers
                6






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                78














                Found it. Clearing all the saved passwords in Chrome from Clear browsing data... also deletes the synced passwords in the Google Account. The setting can be revealed by clicking on the Advanced Tab.






                share|improve this answer





















                • 4





                  I did just that (since "the beginning of time'). STILL they were all on 'passwords.google.com'. You have to go there, too and choose Reset Sync. — Better keep checking a day or two later, that truly all your local chrome sync settings don't re-upp...

                  – Frank Nocke
                  Nov 6 '16 at 7:07






                • 2





                  It seems removing them separately from passwords.google.com is no longer needed. I just cleared all the passwords in Chrome, and they disappeared also from passwords.google.com immediately.

                  – Samuli Kärkkäinen
                  Jun 4 '17 at 13:05






                • 2





                  This does not delete the passwords stored on your Google account. When you sign in again to another device, they will re-sync. You have to manually delete each one in chrome://settings/passwords

                  – jmcdonnell40
                  Mar 6 '18 at 9:41
















                78














                Found it. Clearing all the saved passwords in Chrome from Clear browsing data... also deletes the synced passwords in the Google Account. The setting can be revealed by clicking on the Advanced Tab.






                share|improve this answer





















                • 4





                  I did just that (since "the beginning of time'). STILL they were all on 'passwords.google.com'. You have to go there, too and choose Reset Sync. — Better keep checking a day or two later, that truly all your local chrome sync settings don't re-upp...

                  – Frank Nocke
                  Nov 6 '16 at 7:07






                • 2





                  It seems removing them separately from passwords.google.com is no longer needed. I just cleared all the passwords in Chrome, and they disappeared also from passwords.google.com immediately.

                  – Samuli Kärkkäinen
                  Jun 4 '17 at 13:05






                • 2





                  This does not delete the passwords stored on your Google account. When you sign in again to another device, they will re-sync. You have to manually delete each one in chrome://settings/passwords

                  – jmcdonnell40
                  Mar 6 '18 at 9:41














                78












                78








                78







                Found it. Clearing all the saved passwords in Chrome from Clear browsing data... also deletes the synced passwords in the Google Account. The setting can be revealed by clicking on the Advanced Tab.






                share|improve this answer















                Found it. Clearing all the saved passwords in Chrome from Clear browsing data... also deletes the synced passwords in the Google Account. The setting can be revealed by clicking on the Advanced Tab.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Apr 9 '18 at 4:26









                Pedro Cardoso

                32




                32










                answered Jul 30 '16 at 3:39









                BanderiBanderi

                1,1351612




                1,1351612








                • 4





                  I did just that (since "the beginning of time'). STILL they were all on 'passwords.google.com'. You have to go there, too and choose Reset Sync. — Better keep checking a day or two later, that truly all your local chrome sync settings don't re-upp...

                  – Frank Nocke
                  Nov 6 '16 at 7:07






                • 2





                  It seems removing them separately from passwords.google.com is no longer needed. I just cleared all the passwords in Chrome, and they disappeared also from passwords.google.com immediately.

                  – Samuli Kärkkäinen
                  Jun 4 '17 at 13:05






                • 2





                  This does not delete the passwords stored on your Google account. When you sign in again to another device, they will re-sync. You have to manually delete each one in chrome://settings/passwords

                  – jmcdonnell40
                  Mar 6 '18 at 9:41














                • 4





                  I did just that (since "the beginning of time'). STILL they were all on 'passwords.google.com'. You have to go there, too and choose Reset Sync. — Better keep checking a day or two later, that truly all your local chrome sync settings don't re-upp...

                  – Frank Nocke
                  Nov 6 '16 at 7:07






                • 2





                  It seems removing them separately from passwords.google.com is no longer needed. I just cleared all the passwords in Chrome, and they disappeared also from passwords.google.com immediately.

                  – Samuli Kärkkäinen
                  Jun 4 '17 at 13:05






                • 2





                  This does not delete the passwords stored on your Google account. When you sign in again to another device, they will re-sync. You have to manually delete each one in chrome://settings/passwords

                  – jmcdonnell40
                  Mar 6 '18 at 9:41








                4




                4





                I did just that (since "the beginning of time'). STILL they were all on 'passwords.google.com'. You have to go there, too and choose Reset Sync. — Better keep checking a day or two later, that truly all your local chrome sync settings don't re-upp...

                – Frank Nocke
                Nov 6 '16 at 7:07





                I did just that (since "the beginning of time'). STILL they were all on 'passwords.google.com'. You have to go there, too and choose Reset Sync. — Better keep checking a day or two later, that truly all your local chrome sync settings don't re-upp...

                – Frank Nocke
                Nov 6 '16 at 7:07




                2




                2





                It seems removing them separately from passwords.google.com is no longer needed. I just cleared all the passwords in Chrome, and they disappeared also from passwords.google.com immediately.

                – Samuli Kärkkäinen
                Jun 4 '17 at 13:05





                It seems removing them separately from passwords.google.com is no longer needed. I just cleared all the passwords in Chrome, and they disappeared also from passwords.google.com immediately.

                – Samuli Kärkkäinen
                Jun 4 '17 at 13:05




                2




                2





                This does not delete the passwords stored on your Google account. When you sign in again to another device, they will re-sync. You have to manually delete each one in chrome://settings/passwords

                – jmcdonnell40
                Mar 6 '18 at 9:41





                This does not delete the passwords stored on your Google account. When you sign in again to another device, they will re-sync. You have to manually delete each one in chrome://settings/passwords

                – jmcdonnell40
                Mar 6 '18 at 9:41













                19














                The fastest way to clear all Chrome passwords is with this shortcut:
                Ctrl+Shift+Delete



                That'll open the "Clear browsing data" window. Click the checkbox for "Passwords". By default, it will clear passwords since "The beginning of time". Choose how long ago to delete passwords for:



                [Choose how long ago to delete passwords for



                It can take a long time to delete the passwords and other cached items (it took 20 minutes for my Chrome to clear 1200 passwords and 350MB cached pages/images).



                Click the blue button "Clear Browsing Data" and then wait:



                [Click Clear Browsing Data, then wait






                share|improve this answer


























                • This works, and clears passwords.google.com

                  – Richard Frank
                  Jul 15 '18 at 10:20
















                19














                The fastest way to clear all Chrome passwords is with this shortcut:
                Ctrl+Shift+Delete



                That'll open the "Clear browsing data" window. Click the checkbox for "Passwords". By default, it will clear passwords since "The beginning of time". Choose how long ago to delete passwords for:



                [Choose how long ago to delete passwords for



                It can take a long time to delete the passwords and other cached items (it took 20 minutes for my Chrome to clear 1200 passwords and 350MB cached pages/images).



                Click the blue button "Clear Browsing Data" and then wait:



                [Click Clear Browsing Data, then wait






                share|improve this answer


























                • This works, and clears passwords.google.com

                  – Richard Frank
                  Jul 15 '18 at 10:20














                19












                19








                19







                The fastest way to clear all Chrome passwords is with this shortcut:
                Ctrl+Shift+Delete



                That'll open the "Clear browsing data" window. Click the checkbox for "Passwords". By default, it will clear passwords since "The beginning of time". Choose how long ago to delete passwords for:



                [Choose how long ago to delete passwords for



                It can take a long time to delete the passwords and other cached items (it took 20 minutes for my Chrome to clear 1200 passwords and 350MB cached pages/images).



                Click the blue button "Clear Browsing Data" and then wait:



                [Click Clear Browsing Data, then wait






                share|improve this answer















                The fastest way to clear all Chrome passwords is with this shortcut:
                Ctrl+Shift+Delete



                That'll open the "Clear browsing data" window. Click the checkbox for "Passwords". By default, it will clear passwords since "The beginning of time". Choose how long ago to delete passwords for:



                [Choose how long ago to delete passwords for



                It can take a long time to delete the passwords and other cached items (it took 20 minutes for my Chrome to clear 1200 passwords and 350MB cached pages/images).



                Click the blue button "Clear Browsing Data" and then wait:



                [Click Clear Browsing Data, then wait







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 13 '17 at 0:42

























                answered Nov 13 '17 at 0:22









                Dan RobertsDan Roberts

                19114




                19114













                • This works, and clears passwords.google.com

                  – Richard Frank
                  Jul 15 '18 at 10:20



















                • This works, and clears passwords.google.com

                  – Richard Frank
                  Jul 15 '18 at 10:20

















                This works, and clears passwords.google.com

                – Richard Frank
                Jul 15 '18 at 10:20





                This works, and clears passwords.google.com

                – Richard Frank
                Jul 15 '18 at 10:20











                3














                Based on the answer by @bill-mcgonigle I assume it would also be possible to just use the Chrome Console



                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                if (typeof button != undefined) {
                button.click();
                sleep(3100);
                }
                }


                This worked for me, after the first time you run it, Google will ask for your password again. After that my 200+ passwords were deleted without any issue.



                Please note there's a warning in the console to understand the risk of running anything there. Be advised, read the above carefully to understand what you run.



                Clarification:



                // function to wait for 3 seconds before clicking the next delete button
                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                // start a loop iteration of all buttons inside the password grid
                // please note there are two grids on the page
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                // in my debugging there was one undefined button
                if (typeof button != undefined) {
                // click that exact button element
                button.click();
                // wait for 3.1 seconds
                sleep(3100);
                }
                }





                share|improve this answer
























                • Is this still working ? if I go to passwords.google.com what I get is a list of accounts. To delete a password I have to manually click on an item of the list then it redirect me to a new page where I can finally delete it. It seems script you gave expect you can delete them all by simply clicking on a single button.

                  – tigrou
                  Jan 17 at 10:43


















                3














                Based on the answer by @bill-mcgonigle I assume it would also be possible to just use the Chrome Console



                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                if (typeof button != undefined) {
                button.click();
                sleep(3100);
                }
                }


                This worked for me, after the first time you run it, Google will ask for your password again. After that my 200+ passwords were deleted without any issue.



                Please note there's a warning in the console to understand the risk of running anything there. Be advised, read the above carefully to understand what you run.



                Clarification:



                // function to wait for 3 seconds before clicking the next delete button
                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                // start a loop iteration of all buttons inside the password grid
                // please note there are two grids on the page
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                // in my debugging there was one undefined button
                if (typeof button != undefined) {
                // click that exact button element
                button.click();
                // wait for 3.1 seconds
                sleep(3100);
                }
                }





                share|improve this answer
























                • Is this still working ? if I go to passwords.google.com what I get is a list of accounts. To delete a password I have to manually click on an item of the list then it redirect me to a new page where I can finally delete it. It seems script you gave expect you can delete them all by simply clicking on a single button.

                  – tigrou
                  Jan 17 at 10:43
















                3












                3








                3







                Based on the answer by @bill-mcgonigle I assume it would also be possible to just use the Chrome Console



                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                if (typeof button != undefined) {
                button.click();
                sleep(3100);
                }
                }


                This worked for me, after the first time you run it, Google will ask for your password again. After that my 200+ passwords were deleted without any issue.



                Please note there's a warning in the console to understand the risk of running anything there. Be advised, read the above carefully to understand what you run.



                Clarification:



                // function to wait for 3 seconds before clicking the next delete button
                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                // start a loop iteration of all buttons inside the password grid
                // please note there are two grids on the page
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                // in my debugging there was one undefined button
                if (typeof button != undefined) {
                // click that exact button element
                button.click();
                // wait for 3.1 seconds
                sleep(3100);
                }
                }





                share|improve this answer













                Based on the answer by @bill-mcgonigle I assume it would also be possible to just use the Chrome Console



                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                if (typeof button != undefined) {
                button.click();
                sleep(3100);
                }
                }


                This worked for me, after the first time you run it, Google will ask for your password again. After that my 200+ passwords were deleted without any issue.



                Please note there's a warning in the console to understand the risk of running anything there. Be advised, read the above carefully to understand what you run.



                Clarification:



                // function to wait for 3 seconds before clicking the next delete button
                function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }
                // start a loop iteration of all buttons inside the password grid
                // please note there are two grids on the page
                for (let button of window.document.querySelectorAll('div[role=grid] > div[jsmodel] > div[role=gridcell] > div[role=button]')) {
                // in my debugging there was one undefined button
                if (typeof button != undefined) {
                // click that exact button element
                button.click();
                // wait for 3.1 seconds
                sleep(3100);
                }
                }






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 14 '18 at 8:00









                LuceosLuceos

                1313




                1313













                • Is this still working ? if I go to passwords.google.com what I get is a list of accounts. To delete a password I have to manually click on an item of the list then it redirect me to a new page where I can finally delete it. It seems script you gave expect you can delete them all by simply clicking on a single button.

                  – tigrou
                  Jan 17 at 10:43





















                • Is this still working ? if I go to passwords.google.com what I get is a list of accounts. To delete a password I have to manually click on an item of the list then it redirect me to a new page where I can finally delete it. It seems script you gave expect you can delete them all by simply clicking on a single button.

                  – tigrou
                  Jan 17 at 10:43



















                Is this still working ? if I go to passwords.google.com what I get is a list of accounts. To delete a password I have to manually click on an item of the list then it redirect me to a new page where I can finally delete it. It seems script you gave expect you can delete them all by simply clicking on a single button.

                – tigrou
                Jan 17 at 10:43







                Is this still working ? if I go to passwords.google.com what I get is a list of accounts. To delete a password I have to manually click on an item of the list then it redirect me to a new page where I can finally delete it. It seems script you gave expect you can delete them all by simply clicking on a single button.

                – tigrou
                Jan 17 at 10:43













                2














                I've run into this scenario where I only wanted to delete a large number of specific passwords. Finding no suitable alternative, I created a macro with Keyboard Maestro that deletes 10 at a time:



                chrome remove bulk passwords.kmmacros



                The file can be viewed for security purposes on Google Drive or in a text editor (the .kmmacros files are XML formatted) and can easily be modified to delete hundreds at a time.



                All it does is clicks at the current mouse location, clicks 40 pixels below, and returns the cursor to the original location, repeating 9 more times.






                share|improve this answer




























                  2














                  I've run into this scenario where I only wanted to delete a large number of specific passwords. Finding no suitable alternative, I created a macro with Keyboard Maestro that deletes 10 at a time:



                  chrome remove bulk passwords.kmmacros



                  The file can be viewed for security purposes on Google Drive or in a text editor (the .kmmacros files are XML formatted) and can easily be modified to delete hundreds at a time.



                  All it does is clicks at the current mouse location, clicks 40 pixels below, and returns the cursor to the original location, repeating 9 more times.






                  share|improve this answer


























                    2












                    2








                    2







                    I've run into this scenario where I only wanted to delete a large number of specific passwords. Finding no suitable alternative, I created a macro with Keyboard Maestro that deletes 10 at a time:



                    chrome remove bulk passwords.kmmacros



                    The file can be viewed for security purposes on Google Drive or in a text editor (the .kmmacros files are XML formatted) and can easily be modified to delete hundreds at a time.



                    All it does is clicks at the current mouse location, clicks 40 pixels below, and returns the cursor to the original location, repeating 9 more times.






                    share|improve this answer













                    I've run into this scenario where I only wanted to delete a large number of specific passwords. Finding no suitable alternative, I created a macro with Keyboard Maestro that deletes 10 at a time:



                    chrome remove bulk passwords.kmmacros



                    The file can be viewed for security purposes on Google Drive or in a text editor (the .kmmacros files are XML formatted) and can easily be modified to delete hundreds at a time.



                    All it does is clicks at the current mouse location, clicks 40 pixels below, and returns the cursor to the original location, repeating 9 more times.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 29 '17 at 18:33









                    michael.therrienmichael.therrien

                    211




                    211























                        0














                        For X11 systems, you can load passwords.google.com and on the saved passwords page put the mouse over the top trash-can icon and from a terminal do:



                        watch -n 3 xdotool click 1



                        and keep the mouse over the trash can icon until it's done - the next undeleted password will move up after each previous one has been deleted.



                        Now, Google seems to sign you out at 5 minutes sharp for each p.g.c session, so this method can only do a hundred at a time (my goodness, 20 years of saved passwords...) but it's less maddening than clicking each one individually. Google does appear to impose a 3-second delay between each delete event. I tried fiddling with random delays and mouse wiggles, but those don't affect the 5-minute timeout.



                        This method also works for the 'never save passwords for ...' section, but it will error out if any of those are of the chrome-extension:// protocol type, in which case you will need to move the cursor down one manually.



                        I did do the Chrome-side tip given above to delete all passwords, but as soon as I turned on an old device it uploaded them all again. :angry react:



                        That Google makes this so darn hard to do is probably reason enough to think that it's a good idea.






                        share|improve this answer




























                          0














                          For X11 systems, you can load passwords.google.com and on the saved passwords page put the mouse over the top trash-can icon and from a terminal do:



                          watch -n 3 xdotool click 1



                          and keep the mouse over the trash can icon until it's done - the next undeleted password will move up after each previous one has been deleted.



                          Now, Google seems to sign you out at 5 minutes sharp for each p.g.c session, so this method can only do a hundred at a time (my goodness, 20 years of saved passwords...) but it's less maddening than clicking each one individually. Google does appear to impose a 3-second delay between each delete event. I tried fiddling with random delays and mouse wiggles, but those don't affect the 5-minute timeout.



                          This method also works for the 'never save passwords for ...' section, but it will error out if any of those are of the chrome-extension:// protocol type, in which case you will need to move the cursor down one manually.



                          I did do the Chrome-side tip given above to delete all passwords, but as soon as I turned on an old device it uploaded them all again. :angry react:



                          That Google makes this so darn hard to do is probably reason enough to think that it's a good idea.






                          share|improve this answer


























                            0












                            0








                            0







                            For X11 systems, you can load passwords.google.com and on the saved passwords page put the mouse over the top trash-can icon and from a terminal do:



                            watch -n 3 xdotool click 1



                            and keep the mouse over the trash can icon until it's done - the next undeleted password will move up after each previous one has been deleted.



                            Now, Google seems to sign you out at 5 minutes sharp for each p.g.c session, so this method can only do a hundred at a time (my goodness, 20 years of saved passwords...) but it's less maddening than clicking each one individually. Google does appear to impose a 3-second delay between each delete event. I tried fiddling with random delays and mouse wiggles, but those don't affect the 5-minute timeout.



                            This method also works for the 'never save passwords for ...' section, but it will error out if any of those are of the chrome-extension:// protocol type, in which case you will need to move the cursor down one manually.



                            I did do the Chrome-side tip given above to delete all passwords, but as soon as I turned on an old device it uploaded them all again. :angry react:



                            That Google makes this so darn hard to do is probably reason enough to think that it's a good idea.






                            share|improve this answer













                            For X11 systems, you can load passwords.google.com and on the saved passwords page put the mouse over the top trash-can icon and from a terminal do:



                            watch -n 3 xdotool click 1



                            and keep the mouse over the trash can icon until it's done - the next undeleted password will move up after each previous one has been deleted.



                            Now, Google seems to sign you out at 5 minutes sharp for each p.g.c session, so this method can only do a hundred at a time (my goodness, 20 years of saved passwords...) but it's less maddening than clicking each one individually. Google does appear to impose a 3-second delay between each delete event. I tried fiddling with random delays and mouse wiggles, but those don't affect the 5-minute timeout.



                            This method also works for the 'never save passwords for ...' section, but it will error out if any of those are of the chrome-extension:// protocol type, in which case you will need to move the cursor down one manually.



                            I did do the Chrome-side tip given above to delete all passwords, but as soon as I turned on an old device it uploaded them all again. :angry react:



                            That Google makes this so darn hard to do is probably reason enough to think that it's a good idea.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Mar 10 '18 at 0:41









                            Bill McGonigleBill McGonigle

                            1113




                            1113























                                0














                                I'm having a bizarre do-loop problem that's similar to this, would really welcome bigger brains to help!



                                So due to a TSA snafu, I don't have my laptop anymore. I'm concerned about Chrome sync'ed passwords (as Chrome doesn't ask for 2-step verification to show passwords, just the computer password, and I'm assuming worst-case-scenario someone brute-forces my Mac computer password.)



                                I found the following instructions online and followed them:
                                - logged out of sessions remotely through "details" under Gmail
                                - delete all the passwords on Chrome primary instance
                                - then unsync under settings (uncheck each sync parameter for apps, history, etc.)
                                - then reset sync to clear the Google server
                                - set a new sync password



                                I did all of this--and to doublecheck, I went to my secondary PC with Chrome, which was indeed logged out, but had the old passwords (I'm guessing as a local copy.) As soon as I logged back in, rather than clear out all the passwords, sync repopulated my Primary computer with the old passwords. So my understanding now is, as long as there's an instance of Chrome with old passwords on it, as soon as I resync, it'll autopopulate.



                                So the question is, is there no way to actually delete and keep cleared all the passwords Google Chrome has stored for me, across any sync'ed Chrome instance, such that that's the official record. Or am I going to have to go to each computer I own with Chrome and manually delete all saved passwords?



                                It seems insane that any old instance, rather than take instruction from the newest Chrome instance, can overwrite and repopulate passwords.






                                share|improve this answer








                                New contributor




                                SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.

























                                  0














                                  I'm having a bizarre do-loop problem that's similar to this, would really welcome bigger brains to help!



                                  So due to a TSA snafu, I don't have my laptop anymore. I'm concerned about Chrome sync'ed passwords (as Chrome doesn't ask for 2-step verification to show passwords, just the computer password, and I'm assuming worst-case-scenario someone brute-forces my Mac computer password.)



                                  I found the following instructions online and followed them:
                                  - logged out of sessions remotely through "details" under Gmail
                                  - delete all the passwords on Chrome primary instance
                                  - then unsync under settings (uncheck each sync parameter for apps, history, etc.)
                                  - then reset sync to clear the Google server
                                  - set a new sync password



                                  I did all of this--and to doublecheck, I went to my secondary PC with Chrome, which was indeed logged out, but had the old passwords (I'm guessing as a local copy.) As soon as I logged back in, rather than clear out all the passwords, sync repopulated my Primary computer with the old passwords. So my understanding now is, as long as there's an instance of Chrome with old passwords on it, as soon as I resync, it'll autopopulate.



                                  So the question is, is there no way to actually delete and keep cleared all the passwords Google Chrome has stored for me, across any sync'ed Chrome instance, such that that's the official record. Or am I going to have to go to each computer I own with Chrome and manually delete all saved passwords?



                                  It seems insane that any old instance, rather than take instruction from the newest Chrome instance, can overwrite and repopulate passwords.






                                  share|improve this answer








                                  New contributor




                                  SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.























                                    0












                                    0








                                    0







                                    I'm having a bizarre do-loop problem that's similar to this, would really welcome bigger brains to help!



                                    So due to a TSA snafu, I don't have my laptop anymore. I'm concerned about Chrome sync'ed passwords (as Chrome doesn't ask for 2-step verification to show passwords, just the computer password, and I'm assuming worst-case-scenario someone brute-forces my Mac computer password.)



                                    I found the following instructions online and followed them:
                                    - logged out of sessions remotely through "details" under Gmail
                                    - delete all the passwords on Chrome primary instance
                                    - then unsync under settings (uncheck each sync parameter for apps, history, etc.)
                                    - then reset sync to clear the Google server
                                    - set a new sync password



                                    I did all of this--and to doublecheck, I went to my secondary PC with Chrome, which was indeed logged out, but had the old passwords (I'm guessing as a local copy.) As soon as I logged back in, rather than clear out all the passwords, sync repopulated my Primary computer with the old passwords. So my understanding now is, as long as there's an instance of Chrome with old passwords on it, as soon as I resync, it'll autopopulate.



                                    So the question is, is there no way to actually delete and keep cleared all the passwords Google Chrome has stored for me, across any sync'ed Chrome instance, such that that's the official record. Or am I going to have to go to each computer I own with Chrome and manually delete all saved passwords?



                                    It seems insane that any old instance, rather than take instruction from the newest Chrome instance, can overwrite and repopulate passwords.






                                    share|improve this answer








                                    New contributor




                                    SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.










                                    I'm having a bizarre do-loop problem that's similar to this, would really welcome bigger brains to help!



                                    So due to a TSA snafu, I don't have my laptop anymore. I'm concerned about Chrome sync'ed passwords (as Chrome doesn't ask for 2-step verification to show passwords, just the computer password, and I'm assuming worst-case-scenario someone brute-forces my Mac computer password.)



                                    I found the following instructions online and followed them:
                                    - logged out of sessions remotely through "details" under Gmail
                                    - delete all the passwords on Chrome primary instance
                                    - then unsync under settings (uncheck each sync parameter for apps, history, etc.)
                                    - then reset sync to clear the Google server
                                    - set a new sync password



                                    I did all of this--and to doublecheck, I went to my secondary PC with Chrome, which was indeed logged out, but had the old passwords (I'm guessing as a local copy.) As soon as I logged back in, rather than clear out all the passwords, sync repopulated my Primary computer with the old passwords. So my understanding now is, as long as there's an instance of Chrome with old passwords on it, as soon as I resync, it'll autopopulate.



                                    So the question is, is there no way to actually delete and keep cleared all the passwords Google Chrome has stored for me, across any sync'ed Chrome instance, such that that's the official record. Or am I going to have to go to each computer I own with Chrome and manually delete all saved passwords?



                                    It seems insane that any old instance, rather than take instruction from the newest Chrome instance, can overwrite and repopulate passwords.







                                    share|improve this answer








                                    New contributor




                                    SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.









                                    share|improve this answer



                                    share|improve this answer






                                    New contributor




                                    SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.









                                    answered 19 mins ago









                                    SharamTSharamT

                                    1




                                    1




                                    New contributor




                                    SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.





                                    New contributor





                                    SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.






                                    SharamT is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Super User!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1106689%2fhow-do-i-delete-all-chrome-google-account-stored-website-passwords-at-once%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

                                        Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

                                        Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...