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 - это расширение Chrome, разработанное itwillnotbeasy, и его основная функция - "Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Bookmarks clean up

Скачайте файлы расширений 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
Электронная почта [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'"
}