DribbleGrab

Grab palette from dribble in one tap

ما هو DribbleGrab؟

DribbleGrab هو إضافة Chrome تم تطويرها بواسطة https://workofutkarsh.com، والميزة الرئيسية لها هي "Grab palette from dribble in one tap".

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

screenshot

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

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

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

                        A simple chrome extension grab palette from any dribble shot and open it in https://coolors.co/                    

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

الاسم DribbleGrab DribbleGrab
ID fdppijglimagboifklceednogagekojj
عنوان URL الرسمي https://chromewebstore.google.com/detail/dribblegrab/fdppijglimagboifklceednogagekojj
الوصف Grab palette from dribble in one tap
حجم الملف 74.54 KB
عدد التثبيتات 187
النسخة الحالية 0.0.1
آخر تحديث 2020-07-28
تاريخ النشر 2020-07-16
تقييم 5.00/5 مجموع تقييمات 1
المطور https://workofutkarsh.com
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DribbleGrab",
    "version": "0.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "description": "Grab palette from dribble in one tap",
    "homepage_url": "http:\/\/workofutkarsh.com",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "DribbleGrab!"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dribbble.com\/*",
                "http:\/\/dribbble.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}