How to decode characters in Google Google Chrome history file when it’s copied to TextPad?












1















I am developing a Chrome extension to analyze user history and perform some tasks.



For that using this path C:UsersSadAppDataLocalGoogleChromeUser DataDefault I open History file in a TextPad. But in TextPad some information are showed in symbols. Screenshot below.



Is there anyway that I can translate them into readable content?



enter image description here










share|improve this question





























    1















    I am developing a Chrome extension to analyze user history and perform some tasks.



    For that using this path C:UsersSadAppDataLocalGoogleChromeUser DataDefault I open History file in a TextPad. But in TextPad some information are showed in symbols. Screenshot below.



    Is there anyway that I can translate them into readable content?



    enter image description here










    share|improve this question



























      1












      1








      1








      I am developing a Chrome extension to analyze user history and perform some tasks.



      For that using this path C:UsersSadAppDataLocalGoogleChromeUser DataDefault I open History file in a TextPad. But in TextPad some information are showed in symbols. Screenshot below.



      Is there anyway that I can translate them into readable content?



      enter image description here










      share|improve this question
















      I am developing a Chrome extension to analyze user history and perform some tasks.



      For that using this path C:UsersSadAppDataLocalGoogleChromeUser DataDefault I open History file in a TextPad. But in TextPad some information are showed in symbols. Screenshot below.



      Is there anyway that I can translate them into readable content?



      enter image description here







      google-chrome xml






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 10 '18 at 0:28









      JakeGould

      31.4k1096138




      31.4k1096138










      asked Jan 10 '18 at 0:02









      DusheeDushee

      2015




      2015






















          2 Answers
          2






          active

          oldest

          votes


















          0














          I’m pretty sure what you are seeing is some kind of binary/hex DB code that Chrome uses to store that data. Meaning you trying to access it directly like this won’t work. Instead, you should probably be using the chrome.history API to interact with the contents of the history file. As explained in the Google Chrome API docs:




          Use the chrome.history API to interact with the browser's record of visited pages. You can add, remove, and query for URLs in the browser's history.







          share|improve this answer































            0














            The reason is, that this file is a sqlite db.
            The easiest way to read it if you don't wont to use the browser is write a small python script. use pythons sqlite3 module



            You'll find tutorials on google how to do this is python






            share|improve this answer























              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%2f1284024%2fhow-to-decode-characters-in-google-google-chrome-history-file-when-it-s-copied-t%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              I’m pretty sure what you are seeing is some kind of binary/hex DB code that Chrome uses to store that data. Meaning you trying to access it directly like this won’t work. Instead, you should probably be using the chrome.history API to interact with the contents of the history file. As explained in the Google Chrome API docs:




              Use the chrome.history API to interact with the browser's record of visited pages. You can add, remove, and query for URLs in the browser's history.







              share|improve this answer




























                0














                I’m pretty sure what you are seeing is some kind of binary/hex DB code that Chrome uses to store that data. Meaning you trying to access it directly like this won’t work. Instead, you should probably be using the chrome.history API to interact with the contents of the history file. As explained in the Google Chrome API docs:




                Use the chrome.history API to interact with the browser's record of visited pages. You can add, remove, and query for URLs in the browser's history.







                share|improve this answer


























                  0












                  0








                  0







                  I’m pretty sure what you are seeing is some kind of binary/hex DB code that Chrome uses to store that data. Meaning you trying to access it directly like this won’t work. Instead, you should probably be using the chrome.history API to interact with the contents of the history file. As explained in the Google Chrome API docs:




                  Use the chrome.history API to interact with the browser's record of visited pages. You can add, remove, and query for URLs in the browser's history.







                  share|improve this answer













                  I’m pretty sure what you are seeing is some kind of binary/hex DB code that Chrome uses to store that data. Meaning you trying to access it directly like this won’t work. Instead, you should probably be using the chrome.history API to interact with the contents of the history file. As explained in the Google Chrome API docs:




                  Use the chrome.history API to interact with the browser's record of visited pages. You can add, remove, and query for URLs in the browser's history.








                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 10 '18 at 0:32









                  JakeGouldJakeGould

                  31.4k1096138




                  31.4k1096138

























                      0














                      The reason is, that this file is a sqlite db.
                      The easiest way to read it if you don't wont to use the browser is write a small python script. use pythons sqlite3 module



                      You'll find tutorials on google how to do this is python






                      share|improve this answer




























                        0














                        The reason is, that this file is a sqlite db.
                        The easiest way to read it if you don't wont to use the browser is write a small python script. use pythons sqlite3 module



                        You'll find tutorials on google how to do this is python






                        share|improve this answer


























                          0












                          0








                          0







                          The reason is, that this file is a sqlite db.
                          The easiest way to read it if you don't wont to use the browser is write a small python script. use pythons sqlite3 module



                          You'll find tutorials on google how to do this is python






                          share|improve this answer













                          The reason is, that this file is a sqlite db.
                          The easiest way to read it if you don't wont to use the browser is write a small python script. use pythons sqlite3 module



                          You'll find tutorials on google how to do this is python







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jan 22 at 14:51









                          John SmithJohn Smith

                          1011




                          1011






























                              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%2f1284024%2fhow-to-decode-characters-in-google-google-chrome-history-file-when-it-s-copied-t%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

                              How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

                              is 'sed' thread safe

                              How to make a Squid Proxy server?