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
Eメール [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": [
                ""
            ]
        }
    ]
}