Quick Bookmark Cleaner

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

Qu'est-ce que Quick Bookmark Cleaner ?

Quick Bookmark Cleaner est une extension Chrome développée par Quick Bookmark Cleaner, et sa fonction principale est "Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Quick Bookmark Cleaner

Téléchargez les fichiers d'extension Quick Bookmark Cleaner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Quick Bookmark Cleaner Quick Bookmark Cleaner
ID ljfgijlbekebdhniagdekklbmmchhjja
URL Officiel https://chrome.google.com/webstore/detail/quick-bookmark-cleaner/ljfgijlbekebdhniagdekklbmmchhjja
Description Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders
Taille du Fichier 18.55 KB
Nombre d'Installations 15,707
Version Actuelle 1.2
Dernière Mise à Jour 2022-11-29
Date de Publication 2018-06-27
Évaluation 3.33/5 Total 107 Évaluations
Développeur Quick Bookmark Cleaner
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/gabrielbarros/quick-bookmark-cleaner
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}