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
官方網址 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": [
                ""
            ]
        }
    ]
}