Quick Bookmark Cleaner

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

Quick Bookmark Cleaner là gì?

Quick Bookmark Cleaner là một tiện ích mở rộng Chrome được phát triển bởi Quick Bookmark Cleaner, và tính năng chính của nó là "Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quick Bookmark Cleaner

Tải xuống các tệp mở rộng Quick Bookmark Cleaner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Quick Bookmark Cleaner Quick Bookmark Cleaner
ID ljfgijlbekebdhniagdekklbmmchhjja
URL Chính Thức https://chrome.google.com/webstore/detail/quick-bookmark-cleaner/ljfgijlbekebdhniagdekklbmmchhjja
Mô tả Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders
Kích Thước Tệp 18.55 KB
Số Lần Cài Đặt 15,707
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-11-29
Ngày Phát Hành 2018-06-27
Đánh Giá 3.33/5 Tổng số 107 Đánh Giá
Nhà Phát Triển Quick Bookmark Cleaner
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gabrielbarros/quick-bookmark-cleaner
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}