Quick Bookmark Cleaner

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

Apa itu Quick Bookmark Cleaner?

Quick Bookmark Cleaner adalah ekstensi Chrome yang dikembangkan oleh Quick Bookmark Cleaner, dan fitur utamanya adalah "Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Quick Bookmark Cleaner

Unduh file ekstensi Quick Bookmark Cleaner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Quick Bookmark Cleaner Quick Bookmark Cleaner
ID ljfgijlbekebdhniagdekklbmmchhjja
URL Resmi https://chrome.google.com/webstore/detail/quick-bookmark-cleaner/ljfgijlbekebdhniagdekklbmmchhjja
Deskripsi Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders
Ukuran File 18.55 KB
Jumlah Instalasi 15,707
Versi Saat Ini 1.2
Terakhir Diperbarui 2022-11-29
Tanggal Publikasi 2018-06-27
Penilaian 3.33/5 Total 107 Penilaian
Pengembang Quick Bookmark Cleaner
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/gabrielbarros/quick-bookmark-cleaner
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}