Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/szhu/pushpin
Keep your favorite pinned tabs around.
https://github.com/szhu/pushpin
chrome chrome-extension pinned-tabs productivity typescript
Last synced: about 1 month ago
JSON representation
Keep your favorite pinned tabs around.
- Host: GitHub
- URL: https://github.com/szhu/pushpin
- Owner: szhu
- Created: 2017-03-09T15:12:38.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-03-16T18:59:34.000Z (9 months ago)
- Last Synced: 2024-04-11T15:52:55.622Z (9 months ago)
- Topics: chrome, chrome-extension, pinned-tabs, productivity, typescript
- Language: JavaScript
- Homepage:
- Size: 51.2 MB
- Stars: 13
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pushpin
### Pushpin is a Chrome extension that helps you save and restore pinned tabs.
[![Available in the Chrome Web Store](resources/badge-chrome-web-store.png)](https://chrome.google.com/webstore/detail/oeccdogiekfcglkneepeaodoendiikic)
![screen recording](resources/[email protected])
If you use pinned tabs in Chrome, you might be frustrated by how easy it is to
accidentally lose all of them.With Pushpin, you can:
- Save your preferred set of pinned tabs
- Instantly reset any or all pinned tabs back to your saved configuration
- Move your pinned tabs to the front window without reloading them
- Set keyboard shortcuts for each pinned tab (shortcuts can be global)
- Modify your keyboard shortcuts so that Ctrl/Cmd-_n_ will open the _n_-th
unpinned tabUsage guide
#### Save and restore your pinned tabs
Pushpin lets you configure your preferred set of pinned tabs. Right-click the
Pushpin icon, go to Options, and add a list of URLs.To open your pinned tabs in the current window, click the Pushpin icon. If the
pinned tabs are already open in another window, Pushpin will move them to the
current window. This is done without reloading the tab, so it works seamlessly
even if you have playing media or on a call in a pinned tab.#### Reload your pinned tabs
If you're on a pinned tab and you want to reset it back to the configured URL
(or reload the tab), just click the Pushpin icon.Webapps are buggy sometimes, and sometimes you might need to reset all of them
at once. Double-click Pushpin to reload all your pinned tabs.#### Set keyboard shortcuts for your pinned tabs
After you've set up Pushpin, go to `chrome://extensions/shortcuts` to set up
keyboard shortcuts for your tabs.You can set up a keyboard shortcut for each of your pinned tabs, so that you can
quickly jump to the webapp you want. You can even make these shortcuts global so
that they work from any app! If you press the keyboard shortcut for a tab and
you are already on that tab, the tab will reload to the configured URL for that
pinned tab. (This is useful for when you've strayed far away from the original
pinned tab URL and you want to go back.)#### Set keyboard shortcuts for your unpinned tabs
By default on Chrome, Ctrl-1 - Ctrl-9 (Cmd-1 - Cmd-9 on Mac) will jump you to
the _n_-th tab, but this can be not ideal if you'd like these shortcuts to
exclude the pinned tabs. With Pushpin, you can also set up keyboard shortcuts
for jumping to each unpinned tab. You can set them to Ctrl-1 - Ctrl-9 to
override the Chrome defaults.Feature suggestion guide
#### Possible future features
- Add an option to prevent pinned tabs from being closed, either with a
confirmation dialog or by re-opening pinned tabs if they are closed.
- Support multiple pinned tab configurations that can be cycled through.
- Support pinned tab configurations (for example, keeping a tab always muted, or
having a tab be deactivated by default).
- Quickly close or deactivate all pinned tabs.
- Smarter restoration of tabs after some but not all of them have been closed.#### Requesting new features
If you want one the features above or any other feature, please request it by
[creating an issue](https://github.com/szhu/pushpin/issues).Development guide
#### Editing and testing changes locally
The setup of this project has been optimized to make contributions as simple as
possible. There are no special tools required to edit this project's code --
there isn't even a compilation step!The extensions's code is in `extension`. You can make changes and use the
following steps to test them:1. Go to `chrome://extensions`.
2. If you have the published version of Pushpin installed, you might want to
temporarily turn it off to reduce confusion. You can do that by click the
on/off switch next to it.
3. At the top-right, make sure **Developer mode** is turned on.
4. Drag the `extension` folder into the tab.
5. Note that the "Pushpin" entry has a reload (circular arrow) button next to
it. After modifying extension code, click the reload button to apply the
changes.#### Code style for PRs
If you are contributing PRs or otherwise want to avoid making bugs, this project
has a linter (ESLint), formatter (Prettier), and typechecker (TypeScript)
configured to make sure that the code is as error-free and readable as possible.- To have these tools automatically check your code before each commit, just run
`npm install` (or `pnpm install` or `yarn install`).
- You can also set up your editor to check for errors as you type. Follow the
step above, then install the plugins/extensions for ESLint, Prettier, and
TypeScript for your editor.
- Note that this project uses TypeScript but not TypeScript syntax. Instead, we
use JavaScript with JSDoc comments that contain type information. This allows
us to avoid having a compile process, while having the same great
type-checking that TypeScript can provide. TS/JSDoc syntax reference:
https://www.typescriptlang.org/docs/handbook/type-checking-javascript-files.html