How to decode characters in Google Google Chrome history file when it’s copied to TextPad?
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?
google-chrome xml
add a comment |
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?
google-chrome xml
add a comment |
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?
google-chrome xml
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?
google-chrome xml
google-chrome xml
edited Jan 10 '18 at 0:28
JakeGould
31.4k1096138
31.4k1096138
asked Jan 10 '18 at 0:02
DusheeDushee
2015
2015
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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.
add a comment |
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 10 '18 at 0:32
JakeGouldJakeGould
31.4k1096138
31.4k1096138
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Jan 22 at 14:51
John SmithJohn Smith
1011
1011
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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