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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}