Magic Clipboard

Create your own custom clipboard with ease

ما هو Magic Clipboard؟

Magic Clipboard هو إضافة Chrome تم تطويرها بواسطة panagiotis.geor.dev، والميزة الرئيسية لها هي "Create your own custom clipboard with ease".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Magic Clipboard

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

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

                        With Magic Clipboard you can easily create your own custom clipboard easily by creating a JSON representation for it.

The Magic Clipboard can be accessed through the chrome context menu and its particularly useful to people who have to fill out long forms or who frequently have to fill forms with the same data.                    

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

الاسم Magic Clipboard Magic Clipboard
ID hpcejjdpbbkhhomlngbiloifbkdaagpg
عنوان URL الرسمي https://chromewebstore.google.com/detail/magic-clipboard/hpcejjdpbbkhhomlngbiloifbkdaagpg
الوصف Create your own custom clipboard with ease
حجم الملف 68.86 KB
عدد التثبيتات 27
النسخة الحالية 1.0.2
آخر تحديث 2020-11-29
تاريخ النشر 2020-11-19
المطور panagiotis.geor.dev
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Magic Clipboard",
    "description": "Create your own custom clipboard with ease",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/16.png",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/index.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ]
}