Clipboard History

Extension to save history of copied text in browser

¿Qué es Clipboard History?

Clipboard History es una extensión de Chrome desarrollada por Saif As, y su función principal es "Extension to save history of copied text in browser".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Clipboard History

Descarga archivos de extensión Clipboard History 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

                        it saves each item copied on the clipboard allowing access to any of those items at any time later.

Features:

● Hovering on one item will show all the text content in the tooltip

● Clicking on one item will copy the text to clipboard

● Searching for text will search all the items for matching text

● Clicking on the X button near each item will delete the item from the list

● Clicking on clear saved text will clear all the saved text



Isn't working as expected?
Please send me mail to: [email protected]                    

Información Básica de la Extensión

Nombre Clipboard History Clipboard History
ID mhokbaagmjlbflncohdhinppihlojpco
URL Oficial https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco
Descripción Extension to save history of copied text in browser
Tamaño del Archivo 177 KB
Cantidad de Instalaciones 1,677
Versión Actual 1.5
Última Actualización 2021-11-01
Fecha de Publicación 2020-07-15
Calificación 2.33/5 Total de 3 Calificaciones
Desarrollador Saif As
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clipboard History",
    "version": "1.5",
    "description": "Extension to save history of copied text in browser",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png",
        "512": "icons\/icon512.png"
    },
    "action": {
        "default_icon": "icons\/icon512.png",
        "default_popup": "src\/browser_actions\/popup.html",
        "default_title": "Clipboard History"
    },
    "background": {
        "service_worker": "src\/bg\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/browser_actions\/content.js"
            ]
        }
    ]
}