Clipou: Clipboard History Manager

Manage all your Clipps in one app

Apa itu Clipou: Clipboard History Manager?

Clipou: Clipboard History Manager adalah ekstensi Chrome yang dikembangkan oleh Extensions And Co, dan fitur utamanya adalah "Manage all your Clipps in one app".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Clipou: Clipboard History Manager

Unduh file ekstensi Clipou: Clipboard History Manager 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

                        Quickly manage and list copied text.

Clipou will store the text you've copied across the web and allow you to manage it easily.  

Features :

- Manage your ClipBoard history.
- Add Clips by Ctrl + C or Click and Copy
- Add your Clips as favorits.
- Delete your Clips.

Notes :
- Clipou will ignore copied text from password fields.
- You Must reopen Chrome after installation.                    

Informasi Dasar Ekstensi

Nama Clipou: Clipboard History Manager Clipou: Clipboard History Manager
ID npfghbanedhpdmbnnbiacklepppgfbid
URL Resmi https://chromewebstore.google.com/detail/clipou-clipboard-history/npfghbanedhpdmbnnbiacklepppgfbid
Deskripsi Manage all your Clipps in one app
Ukuran File 104 KB
Jumlah Instalasi 31
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2022-10-24
Tanggal Publikasi 2022-10-23
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Extensions And Co
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "version": "1.0.0",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_ext_name__",
        "default_popup": "html\/popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            }
        }
    }
}