How do I record data on my Chrome account's storage with only Javascript in Google Chrome?

Asked 1 years ago, Updated 1 years ago, 56 views

We programmed our own statistical record pages in HTML and Javascript jQuery to record them on Chrome's local storage every time we change the numbers (like the following)

$('input[name="hoge"]').change(function(){
  localStorage.setItem("hoge", $(this).val())
})

However, I would like to view and change the same statistical records on another PC, and I would like to create the ability to store statistical records on storage linked to a Chrome account instead of local storage only with Javascript instead of using Chrome extensions.
If anyone knows how to do it, please let me know.

javascript html jquery google-chrome

2022-09-29 22:16

1 Answers

How about Google Firebase?
I think this article will be helpful.
https://qiita.com/kohashi/items/43ea22f61ade45972881

You can also write to Google Spreadsheet or save files to Google Drive.
To be honest, there are countless ways to do it.


2022-09-29 22:16

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.