Clipou: Clipboard History Manager

Manage all your Clipps in one app

ما هو Clipou: Clipboard History Manager؟

Clipou: Clipboard History Manager هو إضافة Chrome تم تطويرها بواسطة Extensions And Co، والميزة الرئيسية لها هي "Manage all your Clipps in one app".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Clipou: Clipboard History Manager

قم بتنزيل ملفات الامتداد Clipou: Clipboard History Manager بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Clipou: Clipboard History Manager Clipou: Clipboard History Manager
ID npfghbanedhpdmbnnbiacklepppgfbid
عنوان URL الرسمي https://chromewebstore.google.com/detail/clipou-clipboard-history/npfghbanedhpdmbnnbiacklepppgfbid
الوصف Manage all your Clipps in one app
حجم الملف 104 KB
عدد التثبيتات 31
النسخة الحالية 1.0.0
آخر تحديث 2022-10-24
تاريخ النشر 2022-10-23
تقييم 5.00/5 مجموع تقييمات 1
المطور Extensions And Co
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
            }
        }
    }
}