Screenshot Scrubber

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

Screenshot Scrubber क्या है?

Screenshot Scrubber jonburchel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension replaces text and images in web pages to remove PII for screenshots."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Screenshot Scrubber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*"
            ]
        }
    ]
}