Bookmarks clean up

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

Bookmarks clean up là gì?

Bookmarks clean up là một tiện ích mở rộng Chrome được phát triển bởi itwillnotbeasy, và tính năng chính của nó là "Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bookmarks clean up

Tải xuống các tệp mở rộng Bookmarks clean up dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bookmarks clean up Bookmarks clean up
ID oncbjlgldmiagjophlhobkogeladjijl
URL Chính Thức https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl
Mô tả Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.
Kích Thước Tệp 828 KB
Số Lần Cài Đặt 215,557
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2023-02-02
Ngày Phát Hành 2019-08-14
Đánh Giá 4.50/5 Tổng số 545 Đánh Giá
Nhà Phát Triển itwillnotbeasy
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}