A script to standardize web bookmarks?
by usodiario from LinuxQuestions.org on (#4Z5NJ)
It is very interesting that there are solutions as sophisticated for something as simple as web bookmarks, most of the code closed that if.
But there is nothing multi-platform and open source that works locally, as simple as that, I have been looking for one that has the following characteristics for several days:
At the moment I have created direct access files, in the bookmarks bar I add an access to the folder with these files with file:///bookmarks and in android the folder is shared, only access to it, I select the file and ask with which I want to open the browser.
File Format:
Code:<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LinuxQuestions.org</title>
<meta http-equiv="refresh" content="0; url=https://www.linuxquestions.org/questions/">
<style>
body {
padding: 1em;
text-align: center;
font-family: sans-serif;
color:#aaa;
}
a, a:visited, a:hover, a:link {
color:#888;
}
</style>
</head>
<body>
Redirecting to: <a href="https://www.linuxquestions.org/questions/">https://www.linuxquestions.org/questions/</a>
</body>
</html>
The other is to use an .html file by adding each link with the following format:
Code:<a href="https://www.linuxquestions.org/questions/"> Linux Questions
I would like to know what you use if you have a much better solution.
Thank you


But there is nothing multi-platform and open source that works locally, as simple as that, I have been looking for one that has the following characteristics for several days:
- Make it open source (paid or free)
- It can be independent to the browser.
- Make it cross platform (Linux, Android, etc).
- Let you manage the location of the files and be local not internet (to synchronize with android using Syncthing)
- Make it multi browser (open with any browser)
At the moment I have created direct access files, in the bookmarks bar I add an access to the folder with these files with file:///bookmarks and in android the folder is shared, only access to it, I select the file and ask with which I want to open the browser.
File Format:
Code:<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LinuxQuestions.org</title>
<meta http-equiv="refresh" content="0; url=https://www.linuxquestions.org/questions/">
<style>
body {
padding: 1em;
text-align: center;
font-family: sans-serif;
color:#aaa;
}
a, a:visited, a:hover, a:link {
color:#888;
}
</style>
</head>
<body>
Redirecting to: <a href="https://www.linuxquestions.org/questions/">https://www.linuxquestions.org/questions/</a>
</body>
</html>
The other is to use an .html file by adding each link with the following format:
Code:<a href="https://www.linuxquestions.org/questions/"> Linux Questions
I would like to know what you use if you have a much better solution.
Thank you