Quick Bookmark Cleaner

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

Vad är Quick Bookmark Cleaner?

Quick Bookmark Cleaner är en Chrome-tillägg utvecklad av Quick Bookmark Cleaner, och dess huvudfunktion är "Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Quick Bookmark Cleaner-förlängningens CRX-fil

Ladda ner Quick Bookmark Cleaner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Quick Bookmark Cleaner Quick Bookmark Cleaner
ID ljfgijlbekebdhniagdekklbmmchhjja
Officiell webbadress https://chrome.google.com/webstore/detail/quick-bookmark-cleaner/ljfgijlbekebdhniagdekklbmmchhjja
Beskrivning Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders
Filstorlek 18.55 KB
Antal Installationer 15,707
Aktuell Version 1.2
Senast Uppdaterad 2022-11-29
Publiceringsdatum 2018-06-27
Betyg 3.33/5 Totalt 107 Betyg
Utvecklare Quick Bookmark Cleaner
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/gabrielbarros/quick-bookmark-cleaner
Stödda Språk 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": [
                ""
            ]
        }
    ]
}