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?

Quick Bookmark Cleaner是由Quick Bookmark Cleaner开发的Chrome扩展程序,该扩展的主要功能是“Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders”。

扩展截图

screenshot
screenshot
screenshot

下载Quick Bookmark Cleaner扩展crx文件

下载Quick Bookmark Cleaner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Quick Bookmark Cleaner Quick Bookmark Cleaner
ID ljfgijlbekebdhniagdekklbmmchhjja
官方URL https://chrome.google.com/webstore/detail/quick-bookmark-cleaner/ljfgijlbekebdhniagdekklbmmchhjja
简介 Identify broken bookmarks, update links to https, delete old bookmarks, edit bookmark title, find javascript links and empty folders
文件大小 18.55 KB
安装次数 15,707
当前版本 1.2
更新时间 2022-11-29
上架时间 2018-06-27
评分 3.33/5 共107次评分
开发者 Quick Bookmark Cleaner
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/gabrielbarros/quick-bookmark-cleaner
支持的语言 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": [
                ""
            ]
        }
    ]
}