Webpage(s) Cleanup

Cleanup webpages - remove ads and non-necessary elements, in order to have a clean, readable page

Webpage(s) Cleanup란 무엇입니까?

Webpage(s) Cleanup은(는) devmtxt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cleanup webpages - remove ads and non-necessary elements, in order to have a clean, readable page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Webpage(s) Cleanup 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Cleanup a webpage by removing non-important elements (ads, header, footer, sidebars, etc) in order to have a clean webpage that can be downloaded/printed.                    

확장 프로그램 기본 정보

이름 Webpage(s) Cleanup Webpage(s) Cleanup
ID memfmdoepcoecmpolkdgfnmonkmpfgkf
공식 URL https://chromewebstore.google.com/detail/webpages-cleanup/memfmdoepcoecmpolkdgfnmonkmpfgkf
설명 Cleanup webpages - remove ads and non-necessary elements, in order to have a clean, readable page
파일 크기 90.05 KB
설치 횟수 31
현재 버전 0.0.0.2
최근 업데이트 2020-05-29
출시 날짜 2020-05-28
개발자 devmtxt
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webpage(s) Cleanup",
    "version": "0.0.0.2",
    "author": "Teodor Muraru",
    "default_locale": "en",
    "description": "Cleanup webpages - remove ads and non-necessary elements, in order to have a clean, readable page",
    "icons": {
        "16": "img\/icons\/webpageCleanup_16.png",
        "32": "img\/icons\/webpageCleanup_32.png",
        "48": "img\/icons\/webpageCleanup_48.png",
        "128": "img\/icons\/webpageCleanup_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lib\/jquery-3.5.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "img\/icons\/webpageCleanup_48.png",
        "default_title": "Cleanup this site (either by a generic recipe, or its own personalised one, if it exists)",
        "default_popup": "html\/popup.html"
    },
    "options_page": "html\/options.html",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q",
                "mac": "Command+Shift+Q",
                "linux": "Ctrl+Shift+Q"
            }
        },
        "clicked_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            },
            "description": "Cleanup webpage"
        }
    }
}