Bookmarks clean up

Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.

Bookmarks clean upとは何ですか?

Bookmarks clean upはitwillnotbeasyによって開発されたChromeの拡張機能で、その主な機能は「Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Bookmarks clean up拡張機能のCRXファイルをダウンロード

Bookmarks clean up拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension allows to find and delete duplicate bookmarks, empty folders, merge folders with the same name (within the same path), find no longer working and expired bookmarks and remove them easily. 

Permissions explained:
1. Read and change your bookmarks(required on install) - required for core functions to work
2. Read and change all your data on the websites you visit(optional, not asked until you use Broken URLs checker) – to check if bookmarked page loads and doesn't return any error.

Support further development:
If you find this extension useful, consider supporting me through Patreon: https://www.patreon.com/itwillnotbeasy (A donation of any amount is welcome!). If you want to make an one-time donation there is two options:
1. Donate using cryptocurrency (you can find all required information inside extension settings->donate link)
2. You can cancel your membership on Patreon after being succesfully billed (money are debited once a month, visit https://support.patreon.com/hc/en-us/articles/204606215-Can-I-make-a-one-time-payment for more details)

Warning: there is no way to restore removed bookmarks, so make sure backup your bookmarks before using this extension.

If your screen becomes RED, saying that site is deceptive  while scanning for broken links you can have 2 options:
1. Remove this site from your bookmarks: (error screen shows which site causes error, just open bookmarks manager and search for this site)
2. Disable this "feature" in chrome (go to Settings -> Advanced -> Under "Privacy and security," turn off "Protect you and your device from dangerous sites"),



Changelog (most recent versions first)
0.1
Better privacy:
- Only "Read and change your bookmarks" permission is asked on install.
- “Access your data for all websites” permission is only requested, when running broken URLs checker, and removed after extension tab is closed.

Features asked by users:
- Finally, duplicate checker no longer ignores the URL part after "#".
- Only HTTP and HTTPS protocols are being checked.
    - This means no more "Authentication Required" popups for FTP resources when checking for broken links.
    - It also fixes bookmarks separators in Firefox and Opera(which was using data:// protocol) being incorrectly flagged as duplicates.

Bug fixes:
- Fixed options page not being displayed when called from the in-browser extension preferences page.

0.0.8
- Got rid of unsafe-eval in content_security_policy.
- Also added 64x64px icon for HiDPI displays in manifest.json

0.0.7 Improved Keyboard Accessibility - now you can navigate using keyboard only
0.0.6  Loading indicator is now shown when searching for duplicates
      	   The long text will in results is now wrapped to be more readable
0.0.5 Bugfix release
0.0.4 Fixes bug in Broken URLs checker, settings page now can be also opened from chrome extension dashboard
          Broken URLs page now also has a sticky header, so you will always know what error group you are currently looking at
0.0.3 UI now won't become too wide on large screens.
Fixed a bug that caused to show only a few duplicates when more than 1000 duplicates were found.
0.0.2.0 Added option in settings which allows excluding certain folders from being scanned by extension.
0.0.1.1 URLs containing hashbang (#!, used by some SPA websites) now considered as different URLs, this doesn't affect traditional URLs with anchors (example.com/#heading1).
0.0.1 Added page with information on how to donate(gear icon->donate), when looking for broken URLs there is now a button to select/deselect all entries in a group; firefox version released 
0.0.0.4 UI is optimized for smaller screens, fixed issue when some empty folders weren't deleted, other small bugfixes
0.0.0.3 Bugfix release
0.0.0.2 View details about network error when checking broken links                    

拡張機能の基本情報

名前 Bookmarks clean up Bookmarks clean up
ID oncbjlgldmiagjophlhobkogeladjijl
公式URL https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl
説明 Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.
ファイルサイズ 828 KB
インストール数 215,557
現在のバージョン 0.1.0
最終更新日 2023-02-02
公開日 2019-08-14
評価 4.50/5 合計 545 レビュー
開発者 itwillnotbeasy
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.",
    "version": "0.1.0",
    "manifest_version": 2,
    "name": "Bookmarks clean up",
    "icons": {
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/icon32.png",
            "64": "icons\/icon64.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "bookmarks"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}