Screenshot Scrubber

This extension replaces text and images in web pages to remove PII for screenshots.

Screenshot Scrubber란 무엇입니까?

Screenshot Scrubber은(는) jonburchel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension replaces text and images in web pages to remove PII for screenshots."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Screenshot Scrubber 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Screenshot Scrubber browser extension allows you to easily replace text and images in web pages to remove personally identifiable information (PII) to prepare the pages for screenshots in documentation. It can also have fun other uses to trick family members into thinking you or they are in the news, or to prove that your checking account has ten billion dollars.                    

확장 프로그램 기본 정보

이름 Screenshot Scrubber Screenshot Scrubber
ID hkkgmpmkofnjpclnhfdpiblnchffnmdd
공식 URL https://chromewebstore.google.com/detail/screenshot-scrubber/hkkgmpmkofnjpclnhfdpiblnchffnmdd
설명 This extension replaces text and images in web pages to remove PII for screenshots.
파일 크기 209 KB
설치 횟수 198
현재 버전 1.0.2
최근 업데이트 2021-12-21
출시 날짜 2021-10-23
평점 5.00/5 총 1 개의 평점
개발자 jonburchel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jonburchel/ScreenshotScrubber/releases/latest
도움말 페이지 URL https://github.com/jonburchel/ScreenshotScrubber/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshot Scrubber",
    "description": "This extension replaces text and images in web pages to remove PII for screenshots.",
    "version": "1.0.2",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus",
        "tabs",
        "unlimitedStorage"
    ],
    "options_page": "options_redirector.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js",
                "mark.min.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "commands": {
        "ReplaceSelection": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Replace selected text on the current page."
        },
        "ReplaceImage": {
            "suggested_key": {
                "default": "Alt+H",
                "mac": "Alt+H"
            },
            "description": "Replace an image from the current page."
        },
        "Scrub": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Ctrl+Shift+S"
            },
            "description": "Scrub the current page using configured values."
        }
    },
    "action": {
        "default_icon": {
            "16": "\/images\/DocScreenshotScrubberIcon16.png",
            "32": "\/images\/DocScreenshotScrubberIcon32.png",
            "48": "\/images\/DocScreenshotScrubberIcon48.png",
            "128": "\/images\/DocScreenshotScrubberIcon128.png"
        }
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "icons": {
        "16": "\/images\/DocScreenshotScrubberIcon16.png",
        "32": "\/images\/DocScreenshotScrubberIcon32.png",
        "48": "\/images\/DocScreenshotScrubberIcon48.png",
        "128": "\/images\/DocScreenshotScrubberIcon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/DocScreenshotScrubberIcon32.png",
                "styles.css",
                "mark.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}