Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
formix committed Jul 15, 2024
1 parent bcbba3c commit 1526382
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
25 changes: 24 additions & 1 deletion _posts/2024-07-10-chrome-tab-sorter.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ As a developer, I needed a straightforward way to organize my browser tabs witho
Tab Sorter offers three primary functions:
![Before sorting](/assets/img/chrome-tab-sorter/overview.png)


### 1. Sort Tabs by Domain

Automatically groups tabs from the same website together, ideal for research or multi-page browsing.
Expand All @@ -32,11 +33,33 @@ Allows you to group all tabs in the current window under a custom name, perfect

Identifies and closes exact duplicate tabs, with the option to review similar tabs before closing.

## Why Tab Sorter?

## Why Chrome Tab Sorter?

1. **Security**: As an open-source project, the code is transparent and can be audited by anyone.
2. **Simplicity**: Easy to use with a clean, straightforward interface.
3. **Extensibility**: Open-source nature allows for easy customization and community contributions.


## Extend It Yourself: The Beauty of Open Source

One of the greatest advantages of Tab Sorter being open-source is the ability for anyone to extend its functionality. Here's how you can do it:

1. Clone the GitHub repository
2. Examine the `background.js` and `popup.html` files
3. Use AI tools like ChatGPT or Claude to help you understand and modify the code

For example, you could give the following prompt to an AI assistant:

"Here's the code for background.js and popup.html of my Chrome extension. I want to add a new feature that [describe your desired feature]. Can you show me how to modify the code to implement this?"

Then paste the contents of your `background.js` and `popup.html` files.

The AI can then provide suggestions on how to implement new features or modify existing ones. This approach allows even those with limited coding experience to experiment with and expand the extension's capabilities.

Remember, this is the beauty of open source - the power to customize and improve is in your hands!



[Link to GitHub repository](https://github.com/deepmtch/chrome-tab-sorter)

7 changes: 6 additions & 1 deletion robots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,9 @@ User-agent: anthropic-ai
Disallow: /

User-Agent: PerplexityBot
Disallow: /
Disallow: /



User-agent: *
Disallow: /

0 comments on commit 1526382

Please sign in to comment.