A new page replacement to organize bookmarks
Inspired by some examples from here
This is an unpublished extension, so to install it you'll have to:
- Go to
chrome:extensions
- Activate
Developer mode
on the right corner - Click
Load unpacked
- Select the extension's directory
The 1.0.0 version added a more generic way of coloring tags.
Instead of having arbitrary names like "git" automatically colored orange, now you have to specify the color for each tag (whichever you want).
Before: In 0.0.1, this tag will be colored orange, because the name matched "git"
{
"name": "my app",
"href": "https://myapp.com/",
"tags": [{
"name": "git",
"href": "http://github.com/me/my-app"
}]
}
After: In 1.0.0, you need to inform the color of your tag, which can be whichever you want
{
"name": "my app",
"href": "https://myapp.com/",
"tags": [{
"name": "git",
"color": "pink",
"href": "http://github.com/me/my-app"
}]
}
To help with converting the data.js
from the previous schema to the new one, a shell script was created.
In the root of this app, run the following:
./infra/migration01-10.sh
You can autoformat the resulting js to better readability.