Screenshot Scrubber
This extension replaces text and images in web pages to remove PII for screenshots.
¿Qué es Screenshot Scrubber?
Screenshot Scrubber es una extensión de Chrome desarrollada por jonburchel, y su función principal es "This extension replaces text and images in web pages to remove PII for screenshots.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Screenshot Scrubber
Descarga archivos de extensión Screenshot Scrubber en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Screenshot Scrubber |
ID | hkkgmpmkofnjpclnhfdpiblnchffnmdd |
URL Oficial | https://chromewebstore.google.com/detail/screenshot-scrubber/hkkgmpmkofnjpclnhfdpiblnchffnmdd |
Descripción | This extension replaces text and images in web pages to remove PII for screenshots. |
Tamaño del Archivo | 209 KB |
Cantidad de Instalaciones | 198 |
Versión Actual | 1.0.2 |
Última Actualización | 2021-12-21 |
Fecha de Publicación | 2021-10-23 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | jonburchel |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/jonburchel/ScreenshotScrubber/releases/latest |
URL de la Página de Ayuda | https://github.com/jonburchel/ScreenshotScrubber/issues |
Idiomas Soportados | 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:\/\/*\/*", " |