Clipboard History

Extension to save history of copied text in browser

Qu'est-ce que Clipboard History ?

Clipboard History est une extension Chrome développée par Saif As, et sa fonction principale est "Extension to save history of copied text in browser".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Clipboard History

Téléchargez les fichiers d'extension Clipboard History au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom Clipboard History Clipboard History
ID mhokbaagmjlbflncohdhinppihlojpco
URL Officiel https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco
Description Extension to save history of copied text in browser
Taille du Fichier 177 KB
Nombre d'Installations 1,677
Version Actuelle 1.5
Dernière Mise à Jour 2021-11-01
Date de Publication 2020-07-15
Évaluation 2.33/5 Total 3 Évaluations
Développeur Saif As
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}