MultiClip

MultiClip makes it easy to save multiple items into its clipboard, preview and selectively paste them when needed

ما هو MultiClip؟

MultiClip هو إضافة Chrome تم تطويرها بواسطة Adépòjù Olúwáségun، والميزة الرئيسية لها هي "MultiClip makes it easy to save multiple items into its clipboard, preview and selectively paste them when needed".

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

تحميل ملف CRX للإضافة MultiClip

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

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

                        It does this by keeping track of changes to the clipboard and retaining a copy of clipped items so as to make them reusable until you decide to discard them.

It has the following added features:
- Clipped Items preview
- Dark Mode
- Multi-language support (six(6) languages)
- Auto delete clips after a specified number of days
- Auto save on copy with (Ctrl+C or Cmd+C)
- Notepad feature (where you type manually written text into the clipboard )
- No Limit (you can create as many clips as desired)                    

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

الاسم MultiClip MultiClip
ID kgifojlpdkhneaaefefmhpijbnmmdpeb
عنوان URL الرسمي https://chromewebstore.google.com/detail/multiclip/kgifojlpdkhneaaefefmhpijbnmmdpeb
الوصف MultiClip makes it easy to save multiple items into its clipboard, preview and selectively paste them when needed
حجم الملف 89.54 KB
عدد التثبيتات 560
النسخة الحالية 0.52
آخر تحديث 2022-07-15
تاريخ النشر 2020-07-04
تقييم 4.50/5 مجموع تقييمات 8
المطور Adépòjù Olúwáségun
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en,fr,ar,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_Name__",
    "description": "__MSG_description__",
    "version": "0.52",
    "author": "Ad\u00e9p\u00f2j\u00f9 Ol\u00faw\u00e1s\u00e9gun",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/Oluwasegun-AA\/MultiClip",
    "background": {
        "service_worker": "public\/src\/background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_icon": {
            "16": "public\/client\/icon.png",
            "32": "public\/client\/icon.png",
            "48": "public\/client\/icon.png",
            "128": "public\/client\/icon.png"
        },
        "default_popup": "public\/client\/popup.html"
    },
    "icons": {
        "16": "public\/client\/icon.png",
        "32": "public\/client\/icon.png",
        "48": "public\/client\/icon.png",
        "128": "public\/client\/icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "public\/src\/contentScript.js"
            ]
        }
    ],
    "offline_enabled": true,
    "commands": {
        "add_clips": {
            "suggested_key": {
                "windows": "Ctrl+C",
                "mac": "Command+C"
            },
            "description": "add copied clips to clipboard"
        }
    }
}