Card Clip

Adds an EDHREC-like clipboard feature to Scryfall

ما هو Card Clip؟

Card Clip هو إضافة Chrome تم تطويرها بواسطة hearstjacob8، والميزة الرئيسية لها هي "Adds an EDHREC-like clipboard feature to Scryfall".

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

screenshot

تحميل ملف CRX للإضافة Card Clip

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

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

                        A browser extension that adds an EDHREC-like clipboard feature to Scryfall.

Check out and contribute here: https://github.com/JacobHearst/ScryfallClipboard                    

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

الاسم Card Clip Card Clip
ID npglimimpnllddjddphoagcngmiipkkc
عنوان URL الرسمي https://chromewebstore.google.com/detail/card-clip/npglimimpnllddjddphoagcngmiipkkc
الوصف Adds an EDHREC-like clipboard feature to Scryfall
حجم الملف 55.79 KB
عدد التثبيتات 149
النسخة الحالية 1.4.0
آخر تحديث 2022-09-26
تاريخ النشر 2022-05-18
تقييم 5.00/5 مجموع تقييمات 3
المطور hearstjacob8
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/JacobHearst/CardClip/
عنوان صفحة المساعدة https://github.com/JacobHearst/CardClip/blob/main/SUPPORT.md
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Card Clip",
    "version": "1.4.0",
    "description": "Adds an EDHREC-like clipboard feature to Scryfall",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/scryfall.com\/*",
                "*:\/\/tagger.scryfall.com\/*"
            ],
            "js": [
                "ContentScripts\/Clipboard.js",
                "ContentScripts\/Animation.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/duplicate.svg",
                "img\/trash.svg",
                "img\/clip.svg"
            ],
            "matches": [
                "*:\/\/scryfall.com\/*",
                "*:\/\/tagger.scryfall.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon\/logo16.png",
        "32": "img\/icon\/logo32.png",
        "48": "img\/icon\/logo48.png",
        "128": "img\/icon\/logo128.png"
    }
}