Bookmarks clean up

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

¿Qué es Bookmarks clean up?

Bookmarks clean up es una extensión de Chrome desarrollada por itwillnotbeasy, y su función principal es "Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Bookmarks clean up

Descarga archivos de extensión Bookmarks clean up en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Bookmarks clean up Bookmarks clean up
ID oncbjlgldmiagjophlhobkogeladjijl
URL Oficial https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl
Descripción Find and remove duplicated bookmarks manually and in batches, get rid of broken bookmark links and empty folders.
Tamaño del Archivo 828 KB
Cantidad de Instalaciones 215,557
Versión Actual 0.1.0
Última Actualización 2023-02-02
Fecha de Publicación 2019-08-14
Calificación 4.50/5 Total de 545 Calificaciones
Desarrollador itwillnotbeasy
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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'"
}