Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/petermcd/Browser-sync
A Firefox extension that will sync bookmarks from a web hosted JSON file with the bookmarks configured in the browser.
https://github.com/petermcd/Browser-sync
bookmarks extension firefox
Last synced: 3 months ago
JSON representation
A Firefox extension that will sync bookmarks from a web hosted JSON file with the bookmarks configured in the browser.
- Host: GitHub
- URL: https://github.com/petermcd/Browser-sync
- Owner: petermcd
- License: mit
- Created: 2022-06-14T01:19:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-08T23:01:40.000Z (9 months ago)
- Last Synced: 2024-06-16T15:41:10.427Z (5 months ago)
- Topics: bookmarks, extension, firefox
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Bookmark Sync
A crude toolbar that can sync bookmarks with a JSON file the location of which can
be configured.## Configuration
By typing `about:addon` in the address bar the following attributes can be modified:
### Bookmarks Index
The web location of a JSON file that holds the bookmarks. This must be in the format:
```JSON
{
"websites": [{
"name": "Google",
"url": "https://google.com"
}, {
"name": "Microsoft",
"url": "https://microsoft.com"
}]
}
```### Bookmark Prefix
A prefix that is prepended to the name in the JSON file when adding the bookmark.
### Bookmark Suffix
A prefix that is appended to the name in the JSON file when adding the bookmark.
## Notes
Be careful to ensure that a prefix and suffix is specified, if none are specified
you may lose all of your bookmarks.