Quick Bookmark Cleaner

Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders

Wat is Quick Bookmark Cleaner?

Quick Bookmark Cleaner is een Chrome-extensie ontwikkeld door Quick Bookmark Cleaner, en de belangrijkste functie is "Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Quick Bookmark Cleaner

Download Quick Bookmark Cleaner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders

ABOUT PERMISSIONS:
* Read and change all your data on the websites you visit -> so it can make an http request to all your bookmark links to find out if the page still exists or not;

* Read and change your bookmarks -> so it can read your bookmarks and let you edit or delete them                    

Basisinformatie over de Extensie

Naam Quick Bookmark Cleaner Quick Bookmark Cleaner
ID ljfgijlbekebdhniagdekklbmmchhjja
Officiële URL https://chrome.google.com/webstore/detail/quick-bookmark-cleaner/ljfgijlbekebdhniagdekklbmmchhjja
Beschrijving Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders
Bestandsgrootte 18.55 KB
Aantal Installaties 15,707
Huidige Versie 1.2
Laatst Bijgewerkt 2022-11-29
Publicatiedatum 2018-06-27
Beoordeling 3.33/5 Totaal 107 Beoordelingen
Ontwikkelaar Quick Bookmark Cleaner
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/gabrielbarros/quick-bookmark-cleaner
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Quick Bookmark Cleaner",
    "version": "1.2",
    "description": "Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "img\/128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "bookmarks",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected_content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}