Skip to content

Commit

Permalink
Merge pull request #16 from lamasters/tab-title-bugfix
Browse files Browse the repository at this point in the history
Fix tab title record creation
  • Loading branch information
lamasters authored Oct 21, 2023
2 parents b09ae39 + c5f6c93 commit 1560204
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,21 @@

Entangled is a tab synchronization extension for chromium-based browsers. It allows you to synchronize your tabs across multiple devices, making it easy to switch between devices and pick up where you left off.

Available on the Chrome Web Store. Visit [Entangled](https://chrome.google.com/webstore/detail/entangled/bpladjoppoackkpoegnmfbbccemijcec) to install!

Visit [entangled-tabs.vercel.app](https://entangled-tabs.vercel.app) to create an account.

[![Entangled CI](https://github.com/lamasters/entangled/actions/workflows/node.js.yml/badge.svg)](https://github.com/lamasters/entangled/actions/workflows/node.js.yml) [![ESLint](https://github.com/lamasters/entangled/actions/workflows/eslint.yml/badge.svg)](https://github.com/lamasters/entangled/actions/workflows/eslint.yml)

## Installation

To install Entangled, follow these steps:
To install Entangled from the from the Chrome Web Store, follow these steps:

1. Navigate to the [extension download page](https://chrome.google.com/webstore/detail/entangled/bpladjoppoackkpoegnmfbbccemijcec)
2. Click `Add to Chrome`
3. You're done!

To install Entangled from source, follow these steps:

1. Download the latest release from the [Entangled GitHub repository](https://github.com/lamasters/entangled/releases).
2. Extract the downloaded ZIP file to a directory of your choice.
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "entanlged",
"name": "entangled",
"version": "1.1.0",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export async function addTab(session, hooks) {
"650a25486a53f6902000",
"650a2552869d0ff7adf9",
ID.unique(),
{ url: tab.url, title: tab.title },
{ url: tab.url, title: title },
[
Permission.read(Role.user(hooks.uid.value)),
Permission.write(Role.user(hooks.uid.value)),
Expand Down

0 comments on commit 1560204

Please sign in to comment.