Screenshot Scrubber

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

Screenshot Scrubber là gì?

Screenshot Scrubber là một tiện ích mở rộng Chrome được phát triển bởi jonburchel, và tính năng chính của nó là "This extension replaces text and images in web pages to remove PII for screenshots.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Screenshot Scrubber

Tải xuống các tệp mở rộng Screenshot Scrubber dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Screenshot Scrubber Screenshot Scrubber
ID hkkgmpmkofnjpclnhfdpiblnchffnmdd
URL Chính Thức https://chromewebstore.google.com/detail/screenshot-scrubber/hkkgmpmkofnjpclnhfdpiblnchffnmdd
Mô tả This extension replaces text and images in web pages to remove PII for screenshots.
Kích Thước Tệp 209 KB
Số Lần Cài Đặt 198
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2021-12-21
Ngày Phát Hành 2021-10-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jonburchel
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jonburchel/ScreenshotScrubber/releases/latest
URL Trang Trợ Giúp https://github.com/jonburchel/ScreenshotScrubber/issues
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}