Clipboard History

Extension to save history of copied text in browser

Apa itu Clipboard History?

Clipboard History adalah ekstensi Chrome yang dikembangkan oleh Saif As, dan fitur utamanya adalah "Extension to save history of copied text in browser".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Clipboard History

Unduh file ekstensi Clipboard History dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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]                    

Informasi Dasar Ekstensi

Nama Clipboard History Clipboard History
ID mhokbaagmjlbflncohdhinppihlojpco
URL Resmi https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco
Deskripsi Extension to save history of copied text in browser
Ukuran File 177 KB
Jumlah Instalasi 1,677
Versi Saat Ini 1.5
Terakhir Diperbarui 2021-11-01
Tanggal Publikasi 2020-07-15
Penilaian 2.33/5 Total 3 Penilaian
Pengembang Saif As
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}