A Chrome extension that automatically sorts your bookmarks based on usage frequency.
- Checks if the URL is bookmarked every time you visit a page.
- If bookmarked, it increments an internal counter to track usage frequency.
- Data is stored in
chrome.storage.local.
You can sort your bookmarks by clicking the "Sort Now" button in the popup. Bookmarks will be sorted by usage frequency (descending order).
You can fine-tune what to sort by toggling the following options:
- Sort Favicon Bookmarks: Includes bookmarks with empty titles (icon only) in the sort.
- Sort Folders: Includes folders in the sort. A folder's score is calculated based on the total visits of all bookmarks inside it.
- Sort Folder Contents: Recursively sorts the contents within folders.
- Sort Normal Bookmarks: Includes normal bookmarks (with titles) in the sort.
This extension modifies your bookmarks. While I strive for reliability, I cannot guarantee that no data loss will occur. Please export and backup your bookmarks before installing or using this extension. The author assumes no responsibility for any damage to your bookmarks.
-
Download the latest
freq-sorter-extension.zipfrom Releases. -
Unzip the file.
-
Open
chrome://extensions/in Chrome. -
Turn on "Developer mode" in the top right corner.
-
Click "Load unpacked" and select the unzipped directory.
[!NOTE] Do not delete the unzipped folder. Chrome loads the extension directly from this directory.
npm installnpm run buildThe build artifacts will be output to the dist directory.
- Open
chrome://extensions/in Chrome. - Turn on "Developer mode" in the top right corner.
- Click "Load unpacked" and select the
distdirectory of this project.
ブックマークを使用頻度に基づいて自動的にソートするChrome拡張機能です。
- ブラウザでページを開くたびに、そのURLがブックマークされているか確認します。
- ブックマークされている場合、内部カウンターをインクリメントして使用頻度を記録します。
- データは
chrome.storage.localに保存されます。
ポップアップ画面から「Sort Now」ボタンを押すことで、以下のルールに従ってブックマークを並え替えます。使用頻度が高い(訪問回数が多い)順にソートされます。
以下のオプションを有効/無効に切り替えることで、ソート対象を細かく制御できます。
- Sort Favicon Bookmarks: タイトルが空(アイコンのみ)のブックマークをソート対象にします。
- Sort Folders: フォルダ自体をソート対象にします。フォルダのスコアは、そのフォルダに含まれる全ブックマークの合計アクセス数で計算されます。
- Sort Folder Contents: フォルダの中身も再帰的にソートします。
- Sort Normal Bookmarks: 通常の(タイトルがある)ブックマークをソート対象にします。
本拡張機能はブックマークを変更します。信頼性の向上には努めていますが、データの消失が起きないことを保証するものではありません。インストールや使用の前に、必ずブックマークをエクスポートしてバックアップを作成してください。 作者は、本拡張機能の使用によって生じたブックマークの破損や消失について一切の責任を負いません。ご利用は自己責任でお願いします。
-
Releases ページから最新の
freq-sorter-extension.zipをダウンロードします。 -
ダウンロードした zip ファイルを解凍します。
-
Chromeで
chrome://extensions/を開きます。 -
右上の 「デベロッパーモード」 をオンにします。
-
「パッケージ化されていない拡張機能を読み込む」 をクリックし、解凍したフォルダを選択します。
[!NOTE] 解凍したフォルダは削除しないでください。Chromeはこのディレクトリから直接拡張機能を読み込みます。削除すると拡張機能が機能しなくなります。
npm installnpm run buildビルド成果物は dist ディレクトリに出力されます。
- Chromeで
chrome://extensions/を開きます。 - 右上の「デベロッパーモード」をオンにします。
- 「パッケージ化されていない拡張機能を読み込む」をクリックし、このプロジェクトの
distディレクトリを選択します。